mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
17 lines
379 B
JavaScript
17 lines
379 B
JavaScript
define(['./_basePullAllBy'], function(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);
|
|
}
|
|
|
|
return basePullAll;
|
|
});
|