mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
16 lines
355 B
JavaScript
16 lines
355 B
JavaScript
var basePullAllBy = require('./_basePullAllBy');
|
|
|
|
/**
|
|
* The base implementation of `_.pullAll`.
|
|
*
|
|
* @private
|
|
* @param {Array} array The array to modify.
|
|
* @param {Array} values The values to remove.
|
|
* @returns {Array} Returns `array`.
|
|
*/
|
|
function basePullAll(array, values) {
|
|
return basePullAllBy(array, values);
|
|
}
|
|
|
|
module.exports = basePullAll;
|