send message

This commit is contained in:
Gabriel Pastori
2023-11-19 00:25:47 -03:00
parent ba19640c19
commit 8e8bd216d5
7 changed files with 387 additions and 4 deletions

31
src/helpers/deepMerge.js Normal file
View File

@@ -0,0 +1,31 @@
/**
* Simple object check.
* @param item
* @returns {boolean}
*/
export function isObject(item) {
return (item && typeof item === 'object' && !Array.isArray(item));
}
/**
* Deep merge two objects.
* @param target
* @param ...sources
*/
export function mergeDeep(target, ...sources) {
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);
}