ez-indexation / app / node_modules / setprototypeof /
@kieffer kieffer authored on 7 Mar 2017
..
LICENSE v0.0.0 7 years ago
README.md v0.0.0 7 years ago
index.js v0.0.0 7 years ago
package.json v0.0.0 7 years ago
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