Bakhtina Sofya b84cb877be 1st comm hace 3 semanas
..
.github b84cb877be 1st comm hace 3 semanas
test b84cb877be 1st comm hace 3 semanas
.eslintignore b84cb877be 1st comm hace 3 semanas
.eslintrc b84cb877be 1st comm hace 3 semanas
.nycrc b84cb877be 1st comm hace 3 semanas
CHANGELOG.md b84cb877be 1st comm hace 3 semanas
LICENSE b84cb877be 1st comm hace 3 semanas
README.md b84cb877be 1st comm hace 3 semanas
index.js b84cb877be 1st comm hace 3 semanas
package.json b84cb877be 1st comm hace 3 semanas

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