max_liu b7ab7c8514 chore: 更新node_modules依赖文件 2 hafta önce
..
.github b7ab7c8514 chore: 更新node_modules依赖文件 2 hafta önce
test b7ab7c8514 chore: 更新node_modules依赖文件 2 hafta önce
.eslintrc b7ab7c8514 chore: 更新node_modules依赖文件 2 hafta önce
.nycrc b7ab7c8514 chore: 更新node_modules依赖文件 2 hafta önce
CHANGELOG.md b7ab7c8514 chore: 更新node_modules依赖文件 2 hafta önce
LICENSE b7ab7c8514 chore: 更新node_modules依赖文件 2 hafta önce
Object.setPrototypeOf.d.ts b7ab7c8514 chore: 更新node_modules依赖文件 2 hafta önce
Object.setPrototypeOf.js b7ab7c8514 chore: 更新node_modules依赖文件 2 hafta önce
README.md b7ab7c8514 chore: 更新node_modules依赖文件 2 hafta önce
Reflect.setPrototypeOf.d.ts b7ab7c8514 chore: 更新node_modules依赖文件 2 hafta önce
Reflect.setPrototypeOf.js b7ab7c8514 chore: 更新node_modules依赖文件 2 hafta önce
index.d.ts b7ab7c8514 chore: 更新node_modules依赖文件 2 hafta önce
index.js b7ab7c8514 chore: 更新node_modules依赖文件 2 hafta önce
package.json b7ab7c8514 chore: 更新node_modules依赖文件 2 hafta önce
tsconfig.json b7ab7c8514 chore: 更新node_modules依赖文件 2 hafta önce

README.md

set-proto Version Badge

github actions coverage License Downloads

npm badge

Robustly set the [[Prototype]] of an object. Uses the best available method.

Getting started

npm install --save set-proto

Usage/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