1
0
Fork 0
edp445/node_modules/setprototypeof
koelo de29e2769c added a few messages that the bot would respond to 2022-12-04 00:17:41 +00:00
..
test added a few messages that the bot would respond to 2022-12-04 00:17:41 +00:00
LICENSE added a few messages that the bot would respond to 2022-12-04 00:17:41 +00:00
README.md added a few messages that the bot would respond to 2022-12-04 00:17:41 +00:00
index.d.ts added a few messages that the bot would respond to 2022-12-04 00:17:41 +00:00
index.js added a few messages that the bot would respond to 2022-12-04 00:17:41 +00:00
package.json added a few messages that the bot would respond to 2022-12-04 00:17:41 +00: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'