katoikia-app/web-ui/web-react/node_modules/is-weakref
Maria Sanchez 5abf040b42 fix web ui template 2022-07-05 22:15:11 -06:00
..
.github fix web ui template 2022-07-05 22:15:11 -06:00
test fix web ui template 2022-07-05 22:15:11 -06:00
.eslintignore fix web ui template 2022-07-05 22:15:11 -06:00
.eslintrc fix web ui template 2022-07-05 22:15:11 -06:00
.nycrc fix web ui template 2022-07-05 22:15:11 -06:00
CHANGELOG.md fix web ui template 2022-07-05 22:15:11 -06:00
LICENSE fix web ui template 2022-07-05 22:15:11 -06:00
README.md fix web ui template 2022-07-05 22:15:11 -06:00
index.js fix web ui template 2022-07-05 22:15:11 -06:00
package.json fix web ui template 2022-07-05 22:15:11 -06:00

README.md

is-weakref Version Badge

github actions coverage dependency status dev dependency status License Downloads

[![npm badge][11]][1]

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

Example

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

assert(!isWeakRef(new Set()));
assert(!isWeakRef(new WeakSet()));
assert(!isWeakRef(new Map()));
assert(!isWeakRef(new WeakMap()));

assert(isWeakRef(new WeakRef({})));

class MyWeakRef extends WeakRef {}
assert(isWeakRef(new MyWeakRef({})));

Tests

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