Skip to content

Instantly share code, notes, and snippets.

@koba04
Created March 19, 2011 07:14
Show Gist options
  • Save koba04/877298 to your computer and use it in GitHub Desktop.
Save koba04/877298 to your computer and use it in GitHub Desktop.
FirefoxなどObject.createを使えないときに
if (typeof Object.create === 'undefined') {
Object.create = function (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