diff options
author | Marvin Borner | 2018-11-07 18:02:36 +0100 |
---|---|---|
committer | Marvin Borner | 2018-11-07 18:02:36 +0100 |
commit | 824a2d9f587ca017fc71b84d835e72f54f9c87c4 (patch) | |
tree | 765267ea4686f752aad1f69930cfee5680cc494a /node_modules/locutus/php/array/array_walk.js | |
parent | fe75612e86b493a4e66c4e104e22658679cc014f (diff) |
Began rewrite
Diffstat (limited to 'node_modules/locutus/php/array/array_walk.js')
-rw-r--r-- | node_modules/locutus/php/array/array_walk.js | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/node_modules/locutus/php/array/array_walk.js b/node_modules/locutus/php/array/array_walk.js new file mode 100644 index 0000000..f193479 --- /dev/null +++ b/node_modules/locutus/php/array/array_walk.js @@ -0,0 +1,41 @@ +'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(array, funcname, userdata) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/array_walk/ + // original by: Johnny Mast (http://www.phpvrouwen.nl) + // bugfixed by: David + // improved by: Brett Zamir (http://brett-zamir.me) + // note 1: Only works with user-defined functions, not built-in functions like void() + // example 1: array_walk ([3, 4], function () {}, 'userdata') + // returns 1: true + // example 2: array_walk ('mystring', function () {}) + // returns 2: false + // example 3: array_walk ({"title":"my title"}, function () {}) + // returns 3: true + + if (!array || (typeof array === 'undefined' ? 'undefined' : _typeof(array)) !== 'object') { + return false; + } + + try { + if (typeof funcname === 'function') { + for (var key in array) { + if (arguments.length > 2) { + funcname(array[key], key, userdata); + } else { + funcname(array[key], key); + } + } + } else { + return false; + } + } catch (e) { + return false; + } + + return true; +}; +//# sourceMappingURL=array_walk.js.map
\ No newline at end of file |