mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 18:07:49 +00:00
Bump to v4.0.0.
This commit is contained in:
16
internal/basePullAll.js
Normal file
16
internal/basePullAll.js
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
});
|
||||
Reference in New Issue
Block a user