00001 var baseIteratee = require('./_baseIteratee'),
00002 basePullAll = require('./_basePullAll');
00003
00027 function pullAllBy(array, values, iteratee) {
00028 return (array && array.length && values && values.length)
00029 ? basePullAll(array, values, baseIteratee(iteratee, 2))
00030 : array;
00031 }
00032
00033 module.exports = pullAllBy;