mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 16:17:50 +00:00
Bump to v4.1.0.
This commit is contained in:
15
_basePullAll.js
Normal file
15
_basePullAll.js
Normal file
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user