Skip to content

Instantly share code, notes, and snippets.

@zdying
Created August 12, 2014 06:11
Show Gist options
  • Save zdying/831623d5f7833a582528 to your computer and use it in GitHub Desktop.
Save zdying/831623d5f7833a582528 to your computer and use it in GitHub Desktop.
/**
* Object.create
* from : http://javascript.crockford.com/prototypal.html
*/
if (!isFunc(Object.create)){
Object.create = function(proto){
function F(){}
F.prototype = proto;
return new F();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment