summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/array/array_diff_uassoc.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/php/array/array_diff_uassoc.js')
-rw-r--r--node_modules/locutus/php/array/array_diff_uassoc.js41
1 files changed, 41 insertions, 0 deletions
diff --git a/node_modules/locutus/php/array/array_diff_uassoc.js b/node_modules/locutus/php/array/array_diff_uassoc.js
new file mode 100644
index 0000000..35cbb4b
--- /dev/null
+++ b/node_modules/locutus/php/array/array_diff_uassoc.js
@@ -0,0 +1,41 @@
+'use strict';
+
+module.exports = function array_diff_uassoc(arr1) {
+ // eslint-disable-line camelcase
+ // discuss at: http://locutus.io/php/array_diff_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_diff_uassoc($array1, $array2, function (key1, key2) { return (key1 === key2 ? 0 : (key1 > key2 ? 1 : -1)) })
+ // returns 1: {b: 'brown', c: 'blue', 0: 'red'}
+ // test: skip-1
+
+ var retArr = {};
+ var arglm1 = arguments.length - 1;
+ var cb = arguments[arglm1];
+ var arr = {};
+ var i = 1;
+ var k1 = '';
+ var k = '';
+
+ 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;
+
+ arr1keys: for (k1 in arr1) {
+ // eslint-disable-line no-labels
+ for (i = 1; i < arglm1; i++) {
+ arr = arguments[i];
+ for (k in arr) {
+ if (arr[k] === arr1[k1] && cb(k, k1) === 0) {
+ // If it reaches here, it was found in at least one array, so try next value
+ continue arr1keys; // eslint-disable-line no-labels
+ }
+ }
+ retArr[k1] = arr1[k1];
+ }
+ }
+
+ return retArr;
+};
+//# sourceMappingURL=array_diff_uassoc.js.map \ No newline at end of file