-
-
Save svlasov-gists/2383751 to your computer and use it in GitHub Desktop.
JavaScript: merge two objects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
}; |
rsxdalv
commented
Aug 3, 2017
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment