An open API service indexing awesome lists of open source software.

https://github.com/rubylouvre/object-create-ie8

Object.create polyfill
https://github.com/rubylouvre/object-create-ie8

Last synced: about 1 year ago
JSON representation

Object.create polyfill

Awesome Lists containing this project

README

          

# object-create-ie8
Object.create polyfill ie8

```javascript
if (!/\[native code\]/.test(Object.create)) {
Object.create = function (a) {
var f = function f() {};
f.prototype = a;
return new f();
};
}

```