summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/array/array_sum.js
diff options
context:
space:
mode:
authorMarvin Borner2018-11-07 22:10:16 +0100
committerMarvin Borner2018-11-07 22:10:17 +0100
commit954583f3d56fbfb60321725f13ad092e536e3737 (patch)
treea0505a763797582c61fd8c2f90b422456d8874c9 /node_modules/locutus/php/array/array_sum.js
parent1c355e6e956a4e507ed5436d0c814ba9c3a1deb2 (diff)
Removed node_modules
Diffstat (limited to 'node_modules/locutus/php/array/array_sum.js')
-rw-r--r--node_modules/locutus/php/array/array_sum.js37
1 files changed, 0 insertions, 37 deletions
diff --git a/node_modules/locutus/php/array/array_sum.js b/node_modules/locutus/php/array/array_sum.js
deleted file mode 100644
index 336688c..0000000
--- a/node_modules/locutus/php/array/array_sum.js
+++ /dev/null
@@ -1,37 +0,0 @@
-'use strict';
-
-var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
-
-module.exports = function array_sum(array) {
- // eslint-disable-line camelcase
- // discuss at: http://locutus.io/php/array_sum/
- // original by: Kevin van Zonneveld (http://kvz.io)
- // bugfixed by: Nate
- // bugfixed by: Gilbert
- // improved by: David Pilia (http://www.beteck.it/)
- // improved by: Brett Zamir (http://brett-zamir.me)
- // example 1: array_sum([4, 9, 182.6])
- // returns 1: 195.6
- // example 2: var $total = []
- // example 2: var $index = 0.1
- // example 2: for (var $y = 0; $y < 12; $y++){ $total[$y] = $y + $index }
- // example 2: array_sum($total)
- // returns 2: 67.2
-
- var key;
- var sum = 0;
-
- // input sanitation
- if ((typeof array === 'undefined' ? 'undefined' : _typeof(array)) !== 'object') {
- return null;
- }
-
- for (key in array) {
- if (!isNaN(parseFloat(array[key]))) {
- sum += parseFloat(array[key]);
- }
- }
-
- return sum;
-};
-//# sourceMappingURL=array_sum.js.map \ No newline at end of file