1 var basePullAll = require(
'./_basePullAll');
26 function pullAllWith(array, values, comparator) {
27 return (array && array.length && values && values.length)
28 ? basePullAll(array, values, undefined, comparator)
32 module.exports = pullAllWith;