MCPcopy
hub / github.com/lodash/lodash / omitBy

Function omitBy

lodash.js:13637–13639  ·  view source on GitHub ↗

* The opposite of `_.pickBy`; this method creates an object composed of * the own and inherited enumerable string keyed properties of `object` that * `predicate` doesn't return truthy for. The predicate is invoked with two * arguments: (value, key). * * @static * @membe

(object, predicate)

Source from the content-addressed store, hash-verified

13635 * // => { 'b': '2' }
13636 */
13637 function omitBy(object, predicate) {
13638 return pickBy(object, negate(getIteratee(predicate)));
13639 }
13640
13641 /**
13642 * Creates an object composed of the picked `object` properties.

Callers

nothing calls this directly

Calls 3

pickByFunction · 0.85
negateFunction · 0.85
getIterateeFunction · 0.85

Tested by

no test coverage detected