00001 var basePullAll = require('./_basePullAll');
00002
00026 function pullAllWith(array, values, comparator) {
00027 return (array && array.length && values && values.length)
00028 ? basePullAll(array, values, undefined, comparator)
00029 : array;
00030 }
00031
00032 module.exports = pullAllWith;