diff options
author | Marvin Borner | 2018-11-07 22:10:16 +0100 |
---|---|---|
committer | Marvin Borner | 2018-11-07 22:10:17 +0100 |
commit | 954583f3d56fbfb60321725f13ad092e536e3737 (patch) | |
tree | a0505a763797582c61fd8c2f90b422456d8874c9 /node_modules/locutus/php/array/array_reduce.js | |
parent | 1c355e6e956a4e507ed5436d0c814ba9c3a1deb2 (diff) |
Removed node_modules
Diffstat (limited to 'node_modules/locutus/php/array/array_reduce.js')
-rw-r--r-- | node_modules/locutus/php/array/array_reduce.js | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/node_modules/locutus/php/array/array_reduce.js b/node_modules/locutus/php/array/array_reduce.js deleted file mode 100644 index 41200ab..0000000 --- a/node_modules/locutus/php/array/array_reduce.js +++ /dev/null @@ -1,29 +0,0 @@ -"use strict"; - -module.exports = function array_reduce(aInput, callback) { - // eslint-disable-line camelcase - // discuss at: http://locutus.io/php/array_reduce/ - // original by: Alfonso Jimenez (http://www.alfonsojimenez.com) - // note 1: Takes a function as an argument, not a function's name - // example 1: array_reduce([1, 2, 3, 4, 5], function (v, w){v += w;return v;}) - // returns 1: 15 - - var lon = aInput.length; - var res = 0; - var i = 0; - var tmp = []; - - for (i = 0; i < lon; i += 2) { - tmp[0] = aInput[i]; - if (aInput[i + 1]) { - tmp[1] = aInput[i + 1]; - } else { - tmp[1] = 0; - } - res += callback.apply(null, tmp); - tmp = []; - } - - return res; -}; -//# sourceMappingURL=array_reduce.js.map
\ No newline at end of file |