MCPcopy Index your code
hub / github.com/deployd/deployd / pullAllBy

Function pullAllBy

test-app/public/sinon.js:18376–18380  ·  view source on GitHub ↗

* This method is like `_.pullAll` except that it accepts `iteratee` which is * invoked for each element of `array` and `values` to generate the criterion * by which they're compared. The iteratee is invoked with one argument: (value). * * **Note:** Unlike `_.diffe

(array, values, iteratee)

Source from the content-addressed store, hash-verified

18374 * // => [{ 'x': 2 }]
18375 */
18376 function pullAllBy(array, values, iteratee) {
18377 return (array && array.length && values && values.length)
18378 ? basePullAll(array, values, getIteratee(iteratee, 2))
18379 : array;
18380 }
18381
18382 /**
18383 * This method is like `_.pullAll` except that it accepts `comparator` which

Callers

nothing calls this directly

Calls 2

basePullAllFunction · 0.85
getIterateeFunction · 0.85

Tested by

no test coverage detected