_.omitBy({ a: null, b: 1, c: undefined, d: false }, _.isNil)
_.compact([0, 1, false, 2, '', 3]);
// => [1, 2, 3]
_.pickBy({ a: null, b: 1, c: undefined }, _.identity);
>> Object {b: 1}
_.pickBy({ a: null, b: 1, c: undefined }, _.identity);
>> Object {b: 1}