123456789101112131415161718192021222324252627282930313233 |
- var basePullAll = require('./_basePullAll');
- function pullAllWith(array, values, comparator) {
- return (array && array.length && values && values.length)
- ? basePullAll(array, values, undefined, comparator)
- : array;
- }
- module.exports = pullAllWith;
|