mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
16 lines
349 B
JavaScript
16 lines
349 B
JavaScript
import basePullAllBy from './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);
|
|
}
|
|
|
|
export default basePullAll;
|