Skip to content

Instantly share code, notes, and snippets.

@Bondifrench
Last active July 1, 2016 22:19
Show Gist options
  • Save Bondifrench/936fdadd2817ef132db57e6573a5992f to your computer and use it in GitHub Desktop.
Save Bondifrench/936fdadd2817ef132db57e6573a5992f to your computer and use it in GitHub Desktop.
Object simple extend
function extend (original, update) {
var rec = function(a, b) {
var i;
for (i in b) {
a[i] = b[i];
}
return a;
};
return rec(rec({}, original), update);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment