Skip to content

Instantly share code, notes, and snippets.

@onteria
Created June 2, 2011 23:36
Show Gist options
  • Save onteria/1005580 to your computer and use it in GitHub Desktop.
Save onteria/1005580 to your computer and use it in GitHub Desktop.
Before Object.create()
function object(o) {
function F() {}
F.prototype = o;
return new F();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment