Skip to content

Instantly share code, notes, and snippets.

@j201
Created June 22, 2013 14:46
Show Gist options
  • Save j201/5841140 to your computer and use it in GitHub Desktop.
Save j201/5841140 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