blob: eba8906a9fa88f9c18c72551306d4d0799a2da24 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
'use strict';
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
module.exports = function array_merge_recursive(arr1, arr2) {
// eslint-disable-line camelcase
// discuss at: http://locutus.io/php/array_merge_recursive/
// original by: Subhasis Deb
// input by: Brett Zamir (http://brett-zamir.me)
// bugfixed by: Kevin van Zonneveld (http://kvz.io)
// example 1: var $arr1 = {'color': {'favorite': 'red'}, 0: 5}
// example 1: var $arr2 = {0: 10, 'color': {'favorite': 'green', 0: 'blue'}}
// example 1: array_merge_recursive($arr1, $arr2)
// returns 1: {'color': {'favorite': {0: 'red', 1: 'green'}, 0: 'blue'}, 1: 5, 1: 10}
// test: skip-1
var arrayMerge = require('../array/array_merge');
var idx = '';
if (arr1 && Object.prototype.toString.call(arr1) === '[object Array]' && arr2 && Object.prototype.toString.call(arr2) === '[object Array]') {
for (idx in arr2) {
arr1.push(arr2[idx]);
}
} else if (arr1 && arr1 instanceof Object && arr2 && arr2 instanceof Object) {
for (idx in arr2) {
if (idx in arr1) {
if (_typeof(arr1[idx]) === 'object' && (typeof arr2 === 'undefined' ? 'undefined' : _typeof(arr2)) === 'object') {
arr1[idx] = arrayMerge(arr1[idx], arr2[idx]);
} else {
arr1[idx] = arr2[idx];
}
} else {
arr1[idx] = arr2[idx];
}
}
}
return arr1;
};
//# sourceMappingURL=array_merge_recursive.js.map
|