Assignment5_new/node_modules/dunder-proto
2025-01-07 10:44:59 +05:30
..
.github Initial Commit 2025-01-07 10:44:59 +05:30
test Initial Commit 2025-01-07 10:44:59 +05:30
.eslintrc Initial Commit 2025-01-07 10:44:59 +05:30
.nycrc Initial Commit 2025-01-07 10:44:59 +05:30
CHANGELOG.md Initial Commit 2025-01-07 10:44:59 +05:30
get.d.ts Initial Commit 2025-01-07 10:44:59 +05:30
get.js Initial Commit 2025-01-07 10:44:59 +05:30
LICENSE Initial Commit 2025-01-07 10:44:59 +05:30
package.json Initial Commit 2025-01-07 10:44:59 +05:30
README.md Initial Commit 2025-01-07 10:44:59 +05:30
set.d.ts Initial Commit 2025-01-07 10:44:59 +05:30
set.js Initial Commit 2025-01-07 10:44:59 +05:30
tsconfig.json Initial Commit 2025-01-07 10:44:59 +05:30

dunder-proto Version Badge

github actions coverage License Downloads

npm badge

If available, the Object.prototype.__proto__ accessor and mutator, call-bound.

Getting started

npm install --save dunder-proto

Usage/Examples

const assert = require('assert');
const getDunder = require('dunder-proto/get');
const setDunder = require('dunder-proto/set');

const obj = {};

assert.equal('toString' in obj, true);
assert.equal(getDunder(obj), Object.prototype);

setDunder(obj, null);

assert.equal('toString' in obj, false);
assert.equal(getDunder(obj), null);

Tests

Clone the repo, npm install, and run npm test