summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/array/array_sum.js
diff options
context:
space:
mode:
authorMarvin Borner2018-11-07 18:02:36 +0100
committerMarvin Borner2018-11-07 18:02:36 +0100
commit824a2d9f587ca017fc71b84d835e72f54f9c87c4 (patch)
tree765267ea4686f752aad1f69930cfee5680cc494a /node_modules/locutus/php/array/array_sum.js
parentfe75612e86b493a4e66c4e104e22658679cc014f (diff)
Began rewrite
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, 37 insertions, 0 deletions
diff --git a/node_modules/locutus/php/array/array_sum.js b/node_modules/locutus/php/array/array_sum.js
new file mode 100644
index 0000000..336688c
--- /dev/null
+++ b/node_modules/locutus/php/array/array_sum.js
@@ -0,0 +1,37 @@
+'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