Skip to content

Instantly share code, notes, and snippets.

@benjamn
Created August 11, 2009 18:52
Show Gist options
  • Save benjamn/166049 to your computer and use it in GitHub Desktop.
Save benjamn/166049 to your computer and use it in GitHub Desktop.
Object.create = function( proto, props ) {
var ctor = function( ps ) {
if ( ps )
Object.defineProperties( this, ps );
};
ctor.prototype = proto;
return new ctor( props );
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment