Snow 1d0b9c5323 增加了node环境 | il y a 1 mois | |
---|---|---|
.. | ||
.github | il y a 1 mois | |
test | il y a 1 mois | |
.eslintrc | il y a 1 mois | |
.nycrc | il y a 1 mois | |
CHANGELOG.md | il y a 1 mois | |
LICENSE | il y a 1 mois | |
README.md | il y a 1 mois | |
get.d.ts | il y a 1 mois | |
get.js | il y a 1 mois | |
package.json | il y a 1 mois | |
set.d.ts | il y a 1 mois | |
set.js | il y a 1 mois | |
tsconfig.json | il y a 1 mois |
If available, the Object.prototype.__proto__
accessor and mutator, call-bound.
npm install --save dunder-proto
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);
Clone the repo, npm install
, and run npm test