diff options
Diffstat (limited to 'node_modules/locutus/php/array/array_intersect_ukey.js')
-rw-r--r-- | node_modules/locutus/php/array/array_intersect_ukey.js | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/node_modules/locutus/php/array/array_intersect_ukey.js b/node_modules/locutus/php/array/array_intersect_ukey.js new file mode 100644 index 0000000..0ebcc77 --- /dev/null +++ b/node_modules/locutus/php/array/array_intersect_ukey.js @@ -0,0 +1,54 @@ +'use strict'; + +module.exports = function array_intersect_ukey(arr1) { + // eslint-disable-line camelcase + // discuss at: http://locutus.io/php/array_intersect_ukey/ + // original by: Brett Zamir (http://brett-zamir.me) + // example 1: var $array1 = {blue: 1, red: 2, green: 3, purple: 4} + // example 1: var $array2 = {green: 5, blue: 6, yellow: 7, cyan: 8} + // example 1: array_intersect_ukey ($array1, $array2, function (key1, key2){ return (key1 === key2 ? 0 : (key1 > key2 ? 1 : -1)); }) + // returns 1: {blue: 1, green: 3} + + var retArr = {}; + var arglm1 = arguments.length - 1; + var arglm2 = arglm1 - 1; + var cb = arguments[arglm1]; + // var cb0 = arguments[arglm2] + var k1 = ''; + var i = 1; + var k = ''; + var arr = {}; + + var $global = typeof window !== 'undefined' ? window : global; + + cb = typeof cb === 'string' ? $global[cb] : Object.prototype.toString.call(cb) === '[object Array]' ? $global[cb[0]][cb[1]] : cb; + + // cb0 = (typeof cb0 === 'string') + // ? $global[cb0] + // : (Object.prototype.toString.call(cb0) === '[object Array]') + // ? $global[cb0[0]][cb0[1]] + // : cb0 + + arr1keys: for (k1 in arr1) { + // eslint-disable-line no-labels + arrs: for (i = 1; i < arglm1; i++) { + // eslint-disable-line no-labels + arr = arguments[i]; + for (k in arr) { + if (cb(k, k1) === 0) { + if (i === arglm2) { + retArr[k1] = arr1[k1]; + } + // If the innermost loop always leads at least once to an equal value, + // continue the loop until done + continue arrs; // eslint-disable-line no-labels + } + } + // If it reaches here, it wasn't found in at least one array, so try next value + continue arr1keys; // eslint-disable-line no-labels + } + } + + return retArr; +}; +//# sourceMappingURL=array_intersect_ukey.js.map
\ No newline at end of file |