canonical
Version:
Canonical code style linter and formatter for JavaScript, SCSS, CSS and JSON.
16 lines (13 loc) • 355 B
JavaScript
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;