@newdash/newdash
Version:
javascript/typescript utility library
13 lines (12 loc) • 459 B
TypeScript
export default basePullAll;
/**
* The base implementation of `pullAllBy`.
*
* @private
* @param {Array} array The array to modify.
* @param {Array} values The values to remove.
* @param {any} [iteratee] The iteratee invoked per element.
* @param {Function} [comparator] The comparator invoked per element.
* @returns {Array} Returns `array`.
*/
declare function basePullAll(array: any[], values: any[], iteratee?: any, comparator?: Function): any[];