* 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)
| 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 |
nothing calls this directly
no test coverage detected