diff options
Diffstat (limited to 'node_modules/locutus/php/array/array_intersect_uassoc.js')
-rw-r--r-- | node_modules/locutus/php/array/array_intersect_uassoc.js | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/node_modules/locutus/php/array/array_intersect_uassoc.js b/node_modules/locutus/php/array/array_intersect_uassoc.js deleted file mode 100644 index 8511640..0000000 --- a/node_modules/locutus/php/array/array_intersect_uassoc.js +++ /dev/null @@ -1,54 +0,0 @@ -'use strict'; - -module.exports = function array_intersect_uassoc(arr1) { - // eslint-disable-line camelcase - // discuss at: http://locutus.io/php/array_intersect_uassoc/ - // original by: Brett Zamir (http://brett-zamir.me) - // example 1: var $array1 = {a: 'green', b: 'brown', c: 'blue', 0: 'red'} - // example 1: var $array2 = {a: 'GREEN', B: 'brown', 0: 'yellow', 1: 'red'} - // example 1: array_intersect_uassoc($array1, $array2, function (f_string1, f_string2){var string1 = (f_string1+'').toLowerCase(); var string2 = (f_string2+'').toLowerCase(); if (string1 > string2) return 1; if (string1 === string2) return 0; return -1;}) - // returns 1: {b: 'brown'} - - 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 (arr[k] === arr1[k1] && 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_uassoc.js.map
\ No newline at end of file |