Frontend/25_01_07/mai/node_modules/set-proto
szabomarton 7f4a15b9c3 asd
2025-01-28 11:38:27 +01:00
..
.github asd 2025-01-28 11:38:27 +01:00
test asd 2025-01-28 11:38:27 +01:00
.eslintrc asd 2025-01-28 11:38:27 +01:00
.nycrc asd 2025-01-28 11:38:27 +01:00
CHANGELOG.md asd 2025-01-28 11:38:27 +01:00
index.d.ts asd 2025-01-28 11:38:27 +01:00
index.js asd 2025-01-28 11:38:27 +01:00
LICENSE asd 2025-01-28 11:38:27 +01:00
Object.setPrototypeOf.d.ts asd 2025-01-28 11:38:27 +01:00
Object.setPrototypeOf.js asd 2025-01-28 11:38:27 +01:00
package.json asd 2025-01-28 11:38:27 +01:00
README.md asd 2025-01-28 11:38:27 +01:00
Reflect.setPrototypeOf.d.ts asd 2025-01-28 11:38:27 +01:00
Reflect.setPrototypeOf.js asd 2025-01-28 11:38:27 +01:00
tsconfig.json asd 2025-01-28 11:38:27 +01:00

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