From 99c1d9af689e5325f3cf535c4007b3aeb8325229 Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 10 Jan 2023 14:54:04 +0100 Subject: Update - This is an automated commit --- alarm/node_modules/lodash/xor.js | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 alarm/node_modules/lodash/xor.js (limited to 'alarm/node_modules/lodash/xor.js') diff --git a/alarm/node_modules/lodash/xor.js b/alarm/node_modules/lodash/xor.js deleted file mode 100644 index d4d2860..0000000 --- a/alarm/node_modules/lodash/xor.js +++ /dev/null @@ -1,28 +0,0 @@ -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