* 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 `_.differenceBy`, this m
(array, values, iteratee)
| 7842 | * // => [{ 'x': 2 }] |
| 7843 | */ |
| 7844 | function pullAllBy(array, values, iteratee) { |
| 7845 | return (array && array.length && values && values.length) |
| 7846 | ? basePullAll(array, values, getIteratee(iteratee, 2)) |
| 7847 | : array; |
| 7848 | } |
| 7849 | |
| 7850 | /** |
| 7851 | * This method is like `_.pullAll` except that it accepts `comparator` which |
nothing calls this directly
no test coverage detected