forked from dachan/dach
1
0
Fork 0
dach/node_modules/setprototypeof
leca 30228b54ae a lot of changes 2023-10-22 22:39:45 +03:00
..
test a lot of changes 2023-10-22 22:39:45 +03:00
LICENSE a lot of changes 2023-10-22 22:39:45 +03:00
README.md a lot of changes 2023-10-22 22:39:45 +03:00
index.d.ts a lot of changes 2023-10-22 22:39:45 +03:00
index.js a lot of changes 2023-10-22 22:39:45 +03:00
package.json a lot of changes 2023-10-22 22:39:45 +03:00

README.md

Polyfill for Object.setPrototypeOf

NPM Version NPM Downloads js-standard-style

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 from 'setprototypeof'