Skip to content

Instantly share code, notes, and snippets.

@isorna
Created May 12, 2014 09:19
Show Gist options
  • Save isorna/6f1a04bcdd10036d0d56 to your computer and use it in GitHub Desktop.
Save isorna/6f1a04bcdd10036d0d56 to your computer and use it in GitHub Desktop.
// source: http://javascriptweblog.wordpress.com/2011/05/31/a-fresh-look-at-javascript-mixins/
function extend(destination, source) {
for (var k in source) {
if (source.hasOwnProperty(k)) {
destination[k] = source[k];
}
}
return destination;
}
@isorna
Copy link
Author

isorna commented May 12, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment