Skip to content

Instantly share code, notes, and snippets.

@twalker
Last active August 29, 2015 14:04
Show Gist options
  • Save twalker/10dffb9b00276e37898d to your computer and use it in GitHub Desktop.
Save twalker/10dffb9b00276e37898d to your computer and use it in GitHub Desktop.
tiny extend
// utility to assign defaults to options
function extend(target, source){
target = target || {};
for (var prop in source) {
if(!target.hasOwnProperty(prop)) target[prop] = source[prop];
}
return target;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment