Skip to content

Instantly share code, notes, and snippets.

@padolsey
Created January 9, 2010 13:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save padolsey/272905 to your computer and use it in GitHub Desktop.
Save padolsey/272905 to your computer and use it in GitHub Desktop.
function merge(target, source) {
/* Merges two (or more) objects,
giving the last one precedence */
if ( typeof target !== 'object' ) {
target = {};
}
for (var property in source) {
if ( source.hasOwnProperty(property) ) {
var sourceProperty = source[ property ];
if ( typeof sourceProperty === 'object' ) {
target[ property ] = util.merge( target[ property ], sourceProperty );
continue;
}
target[ property ] = sourceProperty;
}
}
for (var a = 2, l = arguments.length; a < l; a++) {
merge(target, arguments[a]);
}
return target;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment