1.0.0 • Published 11 months ago
set-proto v1.0.0
set-proto 
Robustly set the [Prototype] of an object. Uses the best available method.
Getting started
npm install --save set-protoUsage/Examples
const assert = require('assert');
const setProto = require('set-proto');
const a = { a: 1, b: 2, [Symbol.toStringTag]: 'foo' };
const b = { c: 3 };
assert.ok(!('c' in a));
setProto(a, b);
assert.ok('c' in a);Tests
Clone the repo, npm install, and run npm test
1.0.0
11 months ago
