学习?学个屁 06c63c15cc 初始化提交 il y a 1 mois
..
.github 06c63c15cc 初始化提交 il y a 1 mois
test 06c63c15cc 初始化提交 il y a 1 mois
.editorconfig 06c63c15cc 初始化提交 il y a 1 mois
.eslintrc 06c63c15cc 初始化提交 il y a 1 mois
.gitattributes 06c63c15cc 初始化提交 il y a 1 mois
.nycrc 06c63c15cc 初始化提交 il y a 1 mois
CHANGELOG.md 06c63c15cc 初始化提交 il y a 1 mois
LICENSE 06c63c15cc 初始化提交 il y a 1 mois
README.md 06c63c15cc 初始化提交 il y a 1 mois
index.d.ts 06c63c15cc 初始化提交 il y a 1 mois
index.js 06c63c15cc 初始化提交 il y a 1 mois
package.json 06c63c15cc 初始化提交 il y a 1 mois
tsconfig.json 06c63c15cc 初始化提交 il y a 1 mois

README.md

is-weakset Version Badge

github actions coverage License Downloads

npm badge

Is this value a JS WeakSet? This module works cross-realm/iframe, and despite ES6 @@toStringTag.

Example

var isWeakSet = require('is-weakset');
assert(!isWeakSet(function () {}));
assert(!isWeakSet(null));
assert(!isWeakSet(function* () { yield 42; return Infinity; });
assert(!isWeakSet(Symbol('foo')));
assert(!isWeakSet(1n));
assert(!isWeakSet(Object(1n)));

assert(!isWeakSet(new Set()));
assert(!isWeakSet(new WeakMap()));
assert(!isWeakSet(new Map()));

assert(isWeakSet(new WeakSet()));

class MyWeakSet extends WeakSet {}
assert(isWeakSet(new MyWeakSet()));

Tests

Simply clone the repo, npm install, and run npm test