ES6 Strip Child es nulo de Object

Object.keys(obj).forEach(k => (!obj[k] && obj[k] !== undefined) && delete obj[k]);
Alive Ant