omitBy - this method creates an object composed of the own and inherited enumerable string keyed properties of object that predicate doesn't return truthy for.
{Partial}
omitBy({ 'a': 1, 'b': '2', 'c': 3 }, (v,k) => typeof v === 'number');// returns { 'b': '2' } Copy
omitBy({ 'a': 1, 'b': '2', 'c': 3 }, (v,k) => typeof v === 'number');// returns { 'b': '2' }
Generated using TypeDoc
omitBy - this method creates an object composed of the own and inherited enumerable string keyed properties of object that predicate doesn't return truthy for.