JS establece el valor en el objeto solo si se define
const value = getValue()
const destination = {
...(value ? { value } : {})
}
Clean Caribou
const value = getValue()
const destination = {
...(value ? { value } : {})
}