diff options
author | Anton Luka Šijanec <sijanecantonluka@gmail.com> | 2020-03-04 21:19:18 +0100 |
---|---|---|
committer | Anton Luka Šijanec <sijanecantonluka@gmail.com> | 2020-03-04 21:19:18 +0100 |
commit | fca5b424d41d7126635dd67bba4aa89d1d14c14b (patch) | |
tree | dfc3b3a53a94658f7778a1d5fb954f7991cd9fb9 /js/lib | |
parent | meals submission fix (now sends all meals) (diff) | |
download | beziapp-fca5b424d41d7126635dd67bba4aa89d1d14c14b.tar beziapp-fca5b424d41d7126635dd67bba4aa89d1d14c14b.tar.gz beziapp-fca5b424d41d7126635dd67bba4aa89d1d14c14b.tar.bz2 beziapp-fca5b424d41d7126635dd67bba4aa89d1d14c14b.tar.lz beziapp-fca5b424d41d7126635dd67bba4aa89d1d14c14b.tar.xz beziapp-fca5b424d41d7126635dd67bba4aa89d1d14c14b.tar.zst beziapp-fca5b424d41d7126635dd67bba4aa89d1d14c14b.zip |
Diffstat (limited to 'js/lib')
-rw-r--r-- | js/lib/mergedeep.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/js/lib/mergedeep.js b/js/lib/mergedeep.js new file mode 100644 index 0000000..dfd0dd2 --- /dev/null +++ b/js/lib/mergedeep.js @@ -0,0 +1,32 @@ +// https://stackoverflow.com/questions/27936772/how-to-deep-merge-instead-of-shallow-merge +/** + * Simple object check. + * @param item + * @returns {boolean} + */ +function isObject(item) { + return (item && typeof item === 'object' && !Array.isArray(item)); +} + +/** + * Deep merge two objects. + * @param target + * @param ...sources + */ +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); +} |