summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/array/array_diff_assoc.js
diff options
context:
space:
mode:
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, 0 insertions, 35 deletions
diff --git a/node_modules/locutus/php/array/array_diff_assoc.js b/node_modules/locutus/php/array/array_diff_assoc.js
deleted file mode 100644
index 8422e73..0000000
--- a/node_modules/locutus/php/array/array_diff_assoc.js
+++ /dev/null
@@ -1,35 +0,0 @@
-'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