UNPKG

motion

Version:

motion - moving development forward

16 lines (13 loc) 354 B
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;