summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/array/array_map.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_map.js
parentfe75612e86b493a4e66c4e104e22658679cc014f (diff)
Began rewrite
Diffstat (limited to 'node_modules/locutus/php/array/array_map.js')
-rw-r--r--node_modules/locutus/php/array/array_map.js58
1 files changed, 58 insertions, 0 deletions
diff --git a/node_modules/locutus/php/array/array_map.js b/node_modules/locutus/php/array/array_map.js
new file mode 100644
index 0000000..6e5d7c3
--- /dev/null
+++ b/node_modules/locutus/php/array/array_map.js
@@ -0,0 +1,58 @@
+'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_map(callback) {
+ // eslint-disable-line camelcase
+ // discuss at: http://locutus.io/php/array_map/
+ // original by: Andrea Giammarchi (http://webreflection.blogspot.com)
+ // improved by: Kevin van Zonneveld (http://kvz.io)
+ // improved by: Brett Zamir (http://brett-zamir.me)
+ // input by: thekid
+ // note 1: If the callback is a string (or object, if an array is supplied),
+ // note 1: it can only work if the function name is in the global context
+ // example 1: array_map( function (a){return (a * a * a)}, [1, 2, 3, 4, 5] )
+ // returns 1: [ 1, 8, 27, 64, 125 ]
+
+ var argc = arguments.length;
+ var argv = arguments;
+ var obj = null;
+ var cb = callback;
+ var j = argv[1].length;
+ var i = 0;
+ var k = 1;
+ var m = 0;
+ var tmp = [];
+ var tmpArr = [];
+
+ var $global = typeof window !== 'undefined' ? window : global;
+
+ while (i < j) {
+ while (k < argc) {
+ tmp[m++] = argv[k++][i];
+ }
+
+ m = 0;
+ k = 1;
+
+ if (callback) {
+ if (typeof callback === 'string') {
+ cb = $global[callback];
+ } else if ((typeof callback === 'undefined' ? 'undefined' : _typeof(callback)) === 'object' && callback.length) {
+ obj = typeof callback[0] === 'string' ? $global[callback[0]] : callback[0];
+ if (typeof obj === 'undefined') {
+ throw new Error('Object not found: ' + callback[0]);
+ }
+ cb = typeof callback[1] === 'string' ? obj[callback[1]] : callback[1];
+ }
+ tmpArr[i++] = cb.apply(obj, tmp);
+ } else {
+ tmpArr[i++] = tmp;
+ }
+
+ tmp = [];
+ }
+
+ return tmpArr;
+};
+//# sourceMappingURL=array_map.js.map \ No newline at end of file