summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/lodash/_basePullAll.js
blob: d54d2b130d1e5f1dac75b1380f6a314331b7611e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;