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) --- .../external/school/node_modules/lodash/xor.js | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 includes/external/school/node_modules/lodash/xor.js (limited to 'includes/external/school/node_modules/lodash/xor.js') diff --git a/includes/external/school/node_modules/lodash/xor.js b/includes/external/school/node_modules/lodash/xor.js new file mode 100644 index 0000000..d4d2860 --- /dev/null +++ b/includes/external/school/node_modules/lodash/xor.js @@ -0,0 +1,28 @@ +var arrayFilter = require('./_arrayFilter'), + baseRest = require('./_baseRest'), + baseXor = require('./_baseXor'), + isArrayLikeObject = require('./isArrayLikeObject'); + +/** + * Creates an array of unique values that is the + * [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference) + * of the given arrays. The order of result values is determined by the order + * they occur in the arrays. + * + * @static + * @memberOf _ + * @since 2.4.0 + * @category Array + * @param {...Array} [arrays] The arrays to inspect. + * @returns {Array} Returns the new array of filtered values. + * @see _.difference, _.without + * @example + * + * _.xor([2, 1], [2, 3]); + * // => [1, 3] + */ +var xor = baseRest(function(arrays) { + return baseXor(arrayFilter(arrays, isArrayLikeObject)); +}); + +module.exports = xor; -- cgit