Skip to content

Instantly share code, notes, and snippets.

@cooljl31
Forked from ahtcx/deep-merge.js
Created August 20, 2021 12:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cooljl31/7ee8f4678138997942dc2740178898d6 to your computer and use it in GitHub Desktop.
Save cooljl31/7ee8f4678138997942dc2740178898d6 to your computer and use it in GitHub Desktop.
Deep-Merge JavaScript objects with ES6
// Merge a `source` object to a `target` recursively
const merge = (target, source) => {
// Iterate through `source` properties and if an `Object` set property to merge of `target` and `source` properties
for (const key of Object.keys(source)) {
if (source[key] instanceof Object) Object.assign(source[key], merge(target[key], source[key]))
}
// Join `target` and modified `source`
Object.assign(target || {}, source)
return target
}
const merge=(t,s)=>{const o=Object,a=o.assign;for(const k of o.keys(s))s[k]instanceof o&&a(s[k],merge(t[k],s[k]));return a(t||{},s),t}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment