From 3d1cd02f27518f1a04374c7c8320cd5d82ede6e9 Mon Sep 17 00:00:00 2001 From: Minteck Date: Thu, 23 Feb 2023 19:34:56 +0100 Subject: Updated 40 files, added 37 files, deleted 1103 files and renamed 3905 files (automated) --- .../school/node_modules/lodash/pullAllBy.js | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 includes/external/school/node_modules/lodash/pullAllBy.js (limited to 'includes/external/school/node_modules/lodash/pullAllBy.js') diff --git a/includes/external/school/node_modules/lodash/pullAllBy.js b/includes/external/school/node_modules/lodash/pullAllBy.js new file mode 100644 index 0000000..74025e8 --- /dev/null +++ b/includes/external/school/node_modules/lodash/pullAllBy.js @@ -0,0 +1,33 @@ +var baseIteratee = require('./_baseIteratee'), + basePullAll = require('./_basePullAll'); + +/** + * This method is like `_.pullAll` except that it accepts `iteratee` which is + * invoked for each element of `array` and `values` to generate the criterion + * by which they're compared. The iteratee is invoked with one argument: (value). + * + * **Note:** Unlike `_.differenceBy`, this method mutates `array`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Array + * @param {Array} array The array to modify. + * @param {Array} values The values to remove. + * @param {Function} [iteratee=_.identity] The iteratee invoked per element. + * @returns {Array} Returns `array`. + * @example + * + * var array = [{ 'x': 1 }, { 'x': 2 }, { 'x': 3 }, { 'x': 1 }]; + * + * _.pullAllBy(array, [{ 'x': 1 }, { 'x': 3 }], 'x'); + * console.log(array); + * // => [{ 'x': 2 }] + */ +function pullAllBy(array, values, iteratee) { + return (array && array.length && values && values.length) + ? basePullAll(array, values, baseIteratee(iteratee, 2)) + : array; +} + +module.exports = pullAllBy; -- cgit