Skip to content

Instantly share code, notes, and snippets.

@betterkenly
Created May 1, 2017 01:09
Show Gist options
  • Save betterkenly/033ee2a2fdc31d76ff8cb3c216d62d2f to your computer and use it in GitHub Desktop.
Save betterkenly/033ee2a2fdc31d76ff8cb3c216d62d2f to your computer and use it in GitHub Desktop.
_.extend = function(obj){
_.each(arguments, function(argObj){
_.each(argObj, function(value, key ){
return obj[key] = value;
});
});
return obj;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment