Skip to content

Instantly share code, notes, and snippets.

@batogov
Last active July 15, 2023 20:43
Show Gist options
  • Save batogov/139edda450bc3bb497d89987ad4f2389 to your computer and use it in GitHub Desktop.
Save batogov/139edda450bc3bb497d89987ad4f2389 to your computer and use it in GitHub Desktop.
Simplest polyfill for Object.create()
if (!Object.create) {
Object.create = function(o) {
function F() {}
F.prototype = o;
return new F();
};
}
@YuriiSerdiuk
Copy link

Дякую )

@231globus
Copy link

Вялiкi дзякуй

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment