MES手机端
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
liup a01a5aa773 提交修改 vor 3 Wochen
..
.github 提交修改 vor 3 Wochen
test 提交修改 vor 3 Wochen
.editorconfig 提交修改 vor 3 Wochen
.eslintrc 提交修改 vor 3 Wochen
.nycrc 提交修改 vor 3 Wochen
CHANGELOG.md 提交修改 vor 3 Wochen
LICENSE 提交修改 vor 3 Wochen
README.md 提交修改 vor 3 Wochen
index.d.ts 提交修改 vor 3 Wochen
index.js 提交修改 vor 3 Wochen
package.json 提交修改 vor 3 Wochen
tsconfig.json 提交修改 vor 3 Wochen

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