公共组件、公共样式集合
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
zq 6088619b3e 首次提交 2 weeks ago
..
.github 首次提交 2 weeks ago
test 首次提交 2 weeks ago
.editorconfig 首次提交 2 weeks ago
.eslintrc 首次提交 2 weeks ago
.nycrc 首次提交 2 weeks ago
CHANGELOG.md 首次提交 2 weeks ago
LICENSE 首次提交 2 weeks ago
README.md 首次提交 2 weeks ago
index.d.ts 首次提交 2 weeks ago
index.js 首次提交 2 weeks ago
package.json 首次提交 2 weeks ago
tsconfig.json 首次提交 2 weeks ago

README.md

side-channel Version Badge

github actions coverage License Downloads

npm badge

Store information about any JS value in a side channel. Uses WeakMap if available.

Warning: in an environment that lacks WeakMap, this implementation will leak memory until you delete the key.

Getting started

npm install --save side-channel

Usage/Examples

const assert = require('assert');
const getSideChannel = require('side-channel');

const channel = getSideChannel();

const key = {};
assert.equal(channel.has(key), false);
assert.throws(() => channel.assert(key), TypeError);

channel.set(key, 42);

channel.assert(key); // does not throw
assert.equal(channel.has(key), true);
assert.equal(channel.get(key), 42);

channel.delete(key);
assert.equal(channel.has(key), false);
assert.throws(() => channel.assert(key), TypeError);

Tests

Clone the repo, npm install, and run npm test