-
-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathjoin-arrays.ts
65 lines (53 loc) · 1.46 KB
/
join-arrays.ts
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import cloneDeep from "clone-deep";
import { Customize, Key } from "./types";
import mergeWith from "./merge-with";
import { isRegex, isFunction, isPlainObject } from "./utils";
const isArray = Array.isArray;
export default function joinArrays({
customizeArray,
customizeObject,
key,
}: {
customizeArray?: Customize;
customizeObject?: Customize;
key?: Key;
} = {}) {
return function _joinArrays(a: any, b: any, k: Key): any {
const newKey = key ? `${key}.${k}` : k;
if (isFunction(a) && isFunction(b)) {
return (...args: any[]) => _joinArrays(a(...args), b(...args), k);
}
if (isArray(a) && isArray(b)) {
const customResult = customizeArray && customizeArray(a, b, newKey);
return customResult || [...a, ...b];
}
if (isRegex(b)) {
return b;
}
if (isPlainObject(a) && isPlainObject(b)) {
const customResult = customizeObject && customizeObject(a, b, newKey);
return (
customResult ||
mergeWith(
[a, b],
joinArrays({
customizeArray,
customizeObject,
key: newKey,
}),
)
);
}
if (isPlainObject(b)) {
return cloneDeep(b);
// The behavior of structuredClone differs from cloneDeep
// so it cannot work as a replacement for all cases although
// tests pass with it.
// return structuredClone(b);
}
if (isArray(b)) {
return [...b];
}
return b;
};
}