Mohammad Asif cf937194cb Removed un-waned things 1. 5 mesi fa
..
.github cf937194cb Removed un-waned things 1. 5 mesi fa
test cf937194cb Removed un-waned things 1. 5 mesi fa
.editorconfig cf937194cb Removed un-waned things 1. 5 mesi fa
.eslintignore cf937194cb Removed un-waned things 1. 5 mesi fa
.eslintrc cf937194cb Removed un-waned things 1. 5 mesi fa
.gitattributes cf937194cb Removed un-waned things 1. 5 mesi fa
.nycrc cf937194cb Removed un-waned things 1. 5 mesi fa
CHANGELOG.md cf937194cb Removed un-waned things 1. 5 mesi fa
LICENSE cf937194cb Removed un-waned things 1. 5 mesi fa
README.md cf937194cb Removed un-waned things 1. 5 mesi fa
index.js cf937194cb Removed un-waned things 1. 5 mesi fa
package.json cf937194cb Removed un-waned things 1. 5 mesi fa

README.md

is-weakset Version Badge

github actions coverage dependency status dev dependency status 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