MES手机端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
liup a01a5aa773 提交修改 3 viikkoa sitten
..
.github 提交修改 3 viikkoa sitten
test 提交修改 3 viikkoa sitten
.editorconfig 提交修改 3 viikkoa sitten
.eslintrc 提交修改 3 viikkoa sitten
.gitattributes 提交修改 3 viikkoa sitten
.nycrc 提交修改 3 viikkoa sitten
CHANGELOG.md 提交修改 3 viikkoa sitten
LICENSE 提交修改 3 viikkoa sitten
README.md 提交修改 3 viikkoa sitten
index.d.ts 提交修改 3 viikkoa sitten
index.js 提交修改 3 viikkoa sitten
package.json 提交修改 3 viikkoa sitten
tsconfig.json 提交修改 3 viikkoa sitten

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