Skip to content

Instantly share code, notes, and snippets.

@ravenroc
Created May 17, 2016 12:15
Show Gist options
  • Save ravenroc/4f975a1154d64bf43b2a39a42d17c8a4 to your computer and use it in GitHub Desktop.
Save ravenroc/4f975a1154d64bf43b2a39a42d17c8a4 to your computer and use it in GitHub Desktop.
Object.create() Backup function
if (typeof Object.create !== 'function') {
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