El Mehdi Touimi Benjelloun 015b74845c First commit | il y a 5 ans | |
---|---|---|
.. | ||
test | il y a 5 ans | |
LICENSE | il y a 5 ans | |
README.md | il y a 5 ans | |
index.d.ts | il y a 5 ans | |
index.js | il y a 5 ans | |
package.json | il y a 5 ans |
Object.setPrototypeOf
A simple cross platform implementation to set the prototype of an instianted object. Supports all modern browsers and at least back to IE8.
$ npm install --save setprototypeof
var setPrototypeOf = require('setprototypeof')
var obj = {}
setPrototypeOf(obj, {
foo: function () {
return 'bar'
}
})
obj.foo() // bar
TypeScript is also supported:
import setPrototypeOf = require('setprototypeof')