From 726b81b19251674e149ccfbb1abacbd837fc6db0 Mon Sep 17 00:00:00 2001 From: LinuxWizard42 Date: Wed, 12 Oct 2022 23:08:57 +0300 Subject: Removed files that should not have been included in git --- node_modules/lodash/sum.js | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 node_modules/lodash/sum.js (limited to 'node_modules/lodash/sum.js') diff --git a/node_modules/lodash/sum.js b/node_modules/lodash/sum.js deleted file mode 100644 index 3b07ee4..0000000 --- a/node_modules/lodash/sum.js +++ /dev/null @@ -1,24 +0,0 @@ -var baseSum = require('./_baseSum'), - identity = require('./identity'); - -/** - * Computes the sum of the values in `array`. - * - * @static - * @memberOf _ - * @since 3.4.0 - * @category Math - * @param {Array} array The array to iterate over. - * @returns {number} Returns the sum. - * @example - * - * _.sum([4, 2, 8, 6]); - * // => 20 - */ -function sum(array) { - return (array && array.length) - ? baseSum(array, identity) - : 0; -} - -module.exports = sum; -- cgit v1.2.3-86-g962b