|
il y a 3 semaines | |
---|---|---|
.. | ||
.github | il y a 3 semaines | |
test | il y a 3 semaines | |
.eslintrc | il y a 3 semaines | |
.nycrc | il y a 3 semaines | |
CHANGELOG.md | il y a 3 semaines | |
LICENSE | il y a 3 semaines | |
Object.setPrototypeOf.d.ts | il y a 3 semaines | |
Object.setPrototypeOf.js | il y a 3 semaines | |
README.md | il y a 3 semaines | |
Reflect.setPrototypeOf.d.ts | il y a 3 semaines | |
Reflect.setPrototypeOf.js | il y a 3 semaines | |
index.d.ts | il y a 3 semaines | |
index.js | il y a 3 semaines | |
package.json | il y a 3 semaines | |
tsconfig.json | il y a 3 semaines |
Robustly set the [[Prototype]] of an object. Uses the best available method.
npm install --save set-proto
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);
Clone the repo, npm install
, and run npm test