mson-three/src/util/merge-deep.ts

32 lines
845 B
TypeScript

/**
* Simple object check.
* @param item
* @returns {boolean} Is Object, not array, null or undefined.
*/
export function isObject(item: any): boolean {
return item && typeof item === 'object' && !Array.isArray(item);
}
/**
* Deep merge two objects.
* @param target Merge `sources` into this object.
* @param ...sources Objects to use in merge.
*/
export function mergeDeep(target: any, ...sources: any[]) {
if (!sources.length) return target;
const source = sources.shift();
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 mergeDeep(target, ...sources);
}