tree: 611fcff517c5067663ad66704eca37f9017c68cf [path history] [tgz]
  1. .github/
  2. test/
  3. .editorconfig
  4. .eslintrc
  5. .gitattributes
  6. .nycrc
  7. CHANGELOG.md
  8. index.d.ts
  9. index.js
  10. LICENSE
  11. package.json
  12. README.md
  13. tsconfig.json
node_modules/is-weakset/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