summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/array/array_diff_key.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/php/array/array_diff_key.js')
-rw-r--r--node_modules/locutus/php/array/array_diff_key.js37
1 files changed, 0 insertions, 37 deletions
diff --git a/node_modules/locutus/php/array/array_diff_key.js b/node_modules/locutus/php/array/array_diff_key.js
deleted file mode 100644
index 3fd0f6d..0000000
--- a/node_modules/locutus/php/array/array_diff_key.js
+++ /dev/null
@@ -1,37 +0,0 @@
-'use strict';
-
-module.exports = function array_diff_key(arr1) {
- // eslint-disable-line camelcase
- // discuss at: http://locutus.io/php/array_diff_key/
- // original by: Ates Goral (http://magnetiq.com)
- // revised by: Brett Zamir (http://brett-zamir.me)
- // input by: Everlasto
- // example 1: array_diff_key({red: 1, green: 2, blue: 3, white: 4}, {red: 5})
- // returns 1: {"green":2, "blue":3, "white":4}
- // example 2: array_diff_key({red: 1, green: 2, blue: 3, white: 4}, {red: 5}, {red: 5})
- // returns 2: {"green":2, "blue":3, "white":4}
-
- var argl = arguments.length;
- var retArr = {};
- 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 (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_key.js.map \ No newline at end of file