set-proto
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

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

Package Sidebar

Install

npm i set-proto

Weekly Downloads

11,122,963

Version

1.0.0

License

MIT

Unpacked Size

9.3 kB

Total Files

15

Last publish

Collaborators

  • ljharb