MES手机端
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
liup a01a5aa773 提交修改 3 veckor sedan
..
.github 提交修改 3 veckor sedan
test 提交修改 3 veckor sedan
.editorconfig 提交修改 3 veckor sedan
.eslintrc 提交修改 3 veckor sedan
.nycrc 提交修改 3 veckor sedan
CHANGELOG.md 提交修改 3 veckor sedan
LICENSE 提交修改 3 veckor sedan
README.md 提交修改 3 veckor sedan
index.d.ts 提交修改 3 veckor sedan
index.js 提交修改 3 veckor sedan
package.json 提交修改 3 veckor sedan
tsconfig.json 提交修改 3 veckor sedan

README.md

is-weakmap Version Badge

github actions coverage License Downloads

npm badge

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

Example

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

assert(!isWeakMap(new Set()));
assert(!isWeakMap(new WeakSet()));
assert(!isWeakMap(new Map()));

assert(isWeakMap(new WeakMap()));

class MyWeakMap extends WeakMap {}
assert(isWeakMap(new MyWeakMap()));

Tests

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