Skip to content

Instantly share code, notes, and snippets.

@MrDHat
Forked from j201/gist:5841140
Created June 22, 2013 14:49
Show Gist options
  • Save MrDHat/5841144 to your computer and use it in GitHub Desktop.
Save MrDHat/5841144 to your computer and use it in GitHub Desktop.
function inherit(proto, literal) {
var result = Object.create(proto);
for (var prop in literal) {
if (literal.hasOwnProperty(prop)) {
result[prop] = literal[prop];
}
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment