JS define valor em objeto somente se definido
const value = getValue()
const destination = {
...(value ? { value } : {})
}
Clean Caribou
const value = getValue()
const destination = {
...(value ? { value } : {})
}