summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/array/array_diff_assoc.js
diff options
context:
space:
mode:
authorMarvin Borner2018-11-07 18:02:36 +0100
committerMarvin Borner2018-11-07 18:02:36 +0100
commit824a2d9f587ca017fc71b84d835e72f54f9c87c4 (patch)
tree765267ea4686f752aad1f69930cfee5680cc494a /node_modules/locutus/php/array/array_diff_assoc.js
parentfe75612e86b493a4e66c4e104e22658679cc014f (diff)
Began rewrite
Diffstat (limited to 'node_modules/locutus/php/array/array_diff_assoc.js')
-rw-r--r--node_modules/locutus/php/array/array_diff_assoc.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/node_modules/locutus/php/array/array_diff_assoc.js b/node_modules/locutus/php/array/array_diff_assoc.js
new file mode 100644
index 0000000..8422e73
--- /dev/null
+++ b/node_modules/locutus/php/array/array_diff_assoc.js
@@ -0,0 +1,35 @@
+'use strict';
+
+module.exports = function array_diff_assoc(arr1) {
+ // eslint-disable-line camelcase
+ // discuss at: http://locutus.io/php/array_diff_assoc/
+ // original by: Kevin van Zonneveld (http://kvz.io)
+ // bugfixed by: 0m3r
+ // revised by: Brett Zamir (http://brett-zamir.me)
+ // example 1: array_diff_assoc({0: 'Kevin', 1: 'van', 2: 'Zonneveld'}, {0: 'Kevin', 4: 'van', 5: 'Zonneveld'})
+ // returns 1: {1: 'van', 2: 'Zonneveld'}
+
+ var retArr = {};
+ var argl = arguments.length;
+ var k1 = '';
+ var i = 1;
+ var k = '';
+ var arr = {};
+
+ arr1keys: for (k1 in arr1) {
+ // eslint-disable-line no-labels
+ for (i = 1; i < argl; i++) {
+ arr = arguments[i];
+ for (k in arr) {
+ if (arr[k] === arr1[k1] && k === k1) {
+ // 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_assoc.js.map \ No newline at end of file