contract-query/frontend/node_modules/is-weakset
2025-08-14 15:03:33 -05:00
..
.github initial commit 2025-08-14 15:03:33 -05:00
test initial commit 2025-08-14 15:03:33 -05:00
.editorconfig initial commit 2025-08-14 15:03:33 -05:00
.eslintrc initial commit 2025-08-14 15:03:33 -05:00
.gitattributes initial commit 2025-08-14 15:03:33 -05:00
.nycrc initial commit 2025-08-14 15:03:33 -05:00
CHANGELOG.md initial commit 2025-08-14 15:03:33 -05:00
index.d.ts initial commit 2025-08-14 15:03:33 -05:00
index.js initial commit 2025-08-14 15:03:33 -05:00
LICENSE initial commit 2025-08-14 15:03:33 -05:00
package.json initial commit 2025-08-14 15:03:33 -05:00
README.md initial commit 2025-08-14 15:03:33 -05:00
tsconfig.json initial commit 2025-08-14 15:03:33 -05:00

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