summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/array/array_map.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_map.js
parent1c355e6e956a4e507ed5436d0c814ba9c3a1deb2 (diff)
Removed node_modules
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, 0 insertions, 58 deletions
diff --git a/node_modules/locutus/php/array/array_map.js b/node_modules/locutus/php/array/array_map.js
deleted file mode 100644
index 6e5d7c3..0000000
--- a/node_modules/locutus/php/array/array_map.js
+++ /dev/null
@@ -1,58 +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_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