Skip to content

Instantly share code, notes, and snippets.

@rhyolight
Created March 12, 2010 16:38
Show Gist options
  • Save rhyolight/330494 to your computer and use it in GitHub Desktop.
Save rhyolight/330494 to your computer and use it in GitHub Desktop.
// extending without inheriting
function mixin(from, to) {
var property;
for (property in from) {
if (!to.hasOwnProperty(property)) {
to[property] = from[property];
}
}
return to;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment