Maik 605bfceacd module | před 3 roky | |
---|---|---|
.. | ||
test | před 3 roky | |
LICENSE | před 3 roky | |
README.md | před 3 roky | |
index.d.ts | před 3 roky | |
index.js | před 3 roky | |
package.json | před 3 roky |
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')