|
hace 3 semanas | |
---|---|---|
.. | ||
.github | hace 3 semanas | |
test | hace 3 semanas | |
.eslintrc | hace 3 semanas | |
.nycrc | hace 3 semanas | |
CHANGELOG.md | hace 3 semanas | |
LICENSE | hace 3 semanas | |
Object.setPrototypeOf.d.ts | hace 3 semanas | |
Object.setPrototypeOf.js | hace 3 semanas | |
README.md | hace 3 semanas | |
Reflect.setPrototypeOf.d.ts | hace 3 semanas | |
Reflect.setPrototypeOf.js | hace 3 semanas | |
index.d.ts | hace 3 semanas | |
index.js | hace 3 semanas | |
package.json | hace 3 semanas | |
tsconfig.json | hace 3 semanas |
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