EASYAIuniappNewUI/node_modules/side-channel-weakmap
2025-02-08 18:50:38 +08:00
..
.github 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
test 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
.editorconfig 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
.eslintrc 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
.nycrc 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
CHANGELOG.md 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
index.d.ts 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
index.js 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
LICENSE 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
package.json 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
README.md 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00
tsconfig.json 2025/2/8第一次更新 2025-02-08 18:50:38 +08:00

side-channel-weakmap Version Badge

github actions coverage License Downloads

npm badge

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

Warning: this implementation will leak memory until you delete the key. Use side-channel for the best available strategy.

Getting started

npm install --save side-channel-weakmap

Usage/Examples

const assert = require('assert');
const getSideChannelList = require('side-channel-weakmap');

const channel = getSideChannelList();

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