Tennessee Gibbs 0304752480 added pages to master | пре 6 година | |
---|---|---|
.. | ||
LICENSE | пре 6 година | |
README.md | пре 6 година | |
index.d.ts | пре 6 година | |
index.js | пре 6 година | |
package.json | пре 6 година |
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');