Skip to content

Instantly share code, notes, and snippets.

@hamishrouse
Last active July 21, 2017 02:11
Show Gist options
  • Save hamishrouse/125ae0eea42abb949a186eaceca9a8a7 to your computer and use it in GitHub Desktop.
Save hamishrouse/125ae0eea42abb949a186eaceca9a8a7 to your computer and use it in GitHub Desktop.
function _extend (target, obj) {
for ( var i in obj ) {
target[i] = obj[i];
}
return target;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment