var arrayMap = ,
baseIndexOf = ,
baseIndexOfWith = ,
baseUnary = ,
copyArray = ;
/** Used for built-in method references. */
var arrayProto = ;
/** Built-in value references. */
var splice = arrayProto.;
/**
* The base implementation of `_.pullAllBy` without support for iteratee
* shorthands.
*
* @private
* @param {Array} array The array to modify.
* @param {Array} values The values to remove.
* @param {Function} [iteratee] The iteratee invoked per element.
* @param {Function} [comparator] The comparator invoked per element.
* @returns {Array} Returns `array`.
*/
module.exports = basePullAll;