zhouxianguang 4ff8c8d55d submit code hace 6 años
..
LICENSE 4ff8c8d55d submit code hace 6 años
README.md 4ff8c8d55d submit code hace 6 años
index.d.ts 4ff8c8d55d submit code hace 6 años
index.js 4ff8c8d55d submit code hace 6 años
package.json 4ff8c8d55d submit code hace 6 años

README.md

Polyfill for 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.

Usage:

$ 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');