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
.gitattributes 提交修改 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-set Version Badge

github actions coverage License Downloads

npm badge

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

Example

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

assert(!isSet(new Map()));
assert(!isSet(new WeakSet()));
assert(!isSet(new WeakMap()));

assert(isSet(new Set()));

class MySet extends Set {}
assert(isSet(new MySet()));

Tests

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