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