Public
Script
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
import { mergeDeep as mergeDeep2 } from "https://esm.town/v/crsven/mergeDeep";
/**
* Deep merge two objects.
* @param target
* @param ...sources
*/
export const mergeDeep = (target, ...sources) => {
if (!sources.length) return target;
const source = sources.shift();
const isObject = (item) => {
return item && typeof item === "object" && !Array.isArray(item);
};
if (isObject(target) && isObject(source)) {
for (const key in source) {
if (isObject(source[key])) {
if (!target[key]) Object.assign(target, { [key]: {} });
mergeDeep(target[key], source[key]);
} else {
Object.assign(target, { [key]: source[key] });
}
}
}
return mergeDeep2(target, ...sources);
};
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
October 23, 2023