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.
omitBy({ 'a': 1, 'b': '2', 'c': 3 }, (v,k) => typeof v === 'number'); // returns { 'b': '2' }
{Partial}
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.
omitBy({ 'a': 1, 'b': '2', 'c': 3 }, (v,k) => typeof v === 'number'); // returns { 'b': '2' }