ES6 Eliminar la propiedad vacía del objeto

Object.entries(obj).reduce((a,[k,v]) => (v == null ? a : (a[k]=v, a)), {})
Magnificent Moth