From 824a2d9f587ca017fc71b84d835e72f54f9c87c4 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 7 Nov 2018 18:02:36 +0100 Subject: Began rewrite --- .../locutus/php/array/array_walk_recursive.js | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 node_modules/locutus/php/array/array_walk_recursive.js (limited to 'node_modules/locutus/php/array/array_walk_recursive.js') diff --git a/node_modules/locutus/php/array/array_walk_recursive.js b/node_modules/locutus/php/array/array_walk_recursive.js new file mode 100644 index 0000000..c4d3090 --- /dev/null +++ b/node_modules/locutus/php/array/array_walk_recursive.js @@ -0,0 +1,49 @@ +'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_walk_recursive(array, funcname, userdata) { + // eslint-disable-line camelcase + // original by: Hugues Peccatte + // note 1: Only works with user-defined functions, not built-in functions like void() + // example 1: array_walk_recursive([3, 4], function () {}, 'userdata') + // returns 1: true + // example 2: array_walk_recursive([3, [4]], function () {}, 'userdata') + // returns 2: true + // example 3: array_walk_recursive([3, []], function () {}, 'userdata') + // returns 3: true + + if (!array || (typeof array === 'undefined' ? 'undefined' : _typeof(array)) !== 'object') { + return false; + } + + if (typeof funcname !== 'function') { + return false; + } + + for (var key in array) { + // apply "funcname" recursively only on arrays + if (Object.prototype.toString.call(array[key]) === '[object Array]') { + var funcArgs = [array[key], funcname]; + if (arguments.length > 2) { + funcArgs.push(userdata); + } + if (array_walk_recursive.apply(null, funcArgs) === false) { + return false; + } + continue; + } + try { + if (arguments.length > 2) { + funcname(array[key], key, userdata); + } else { + funcname(array[key], key); + } + } catch (e) { + return false; + } + } + + return true; +}; +//# sourceMappingURL=array_walk_recursive.js.map \ No newline at end of file -- cgit v1.2.3