is-weakset

inspect-js
popular js
is-weakset JS library on GitHub is-weakset JS library on npm Download is-weakset JS library

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

Version 2.0.4 License MIT Vulnerabilities 0
is-weakset has no homepage
is-weakset JS library on GitHub
is-weakset JS library on npm
Download is-weakset JS library
Keywords
mapweakmapsetweaksetcollectionisrobust

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