Nexus / app /utils /merge.ts
Severian's picture
Upload 269 files
f0499d2
raw
history blame contribute delete
437 Bytes
export function merge(target: any, source: any) {
Object.keys(source).forEach(function (key) {
if (
(source.hasOwnProperty(key) && // Check if the property is not inherited
source[key] &&
typeof source[key] === "object") ||
key === "__proto__" ||
key === "constructor"
) {
merge((target[key] = target[key] || {}), source[key]);
return;
}
target[key] = source[key];
});
}