Mohammad Asif cf937194cb Removed un-waned things 1. | il y a 5 mois | |
---|---|---|
.. | ||
.github | il y a 5 mois | |
test | il y a 5 mois | |
.editorconfig | il y a 5 mois | |
.eslintignore | il y a 5 mois | |
.eslintrc | il y a 5 mois | |
.gitattributes | il y a 5 mois | |
.nycrc | il y a 5 mois | |
CHANGELOG.md | il y a 5 mois | |
LICENSE | il y a 5 mois | |
README.md | il y a 5 mois | |
index.js | il y a 5 mois | |
package.json | il y a 5 mois |
Is this value a JS Set? This module works cross-realm/iframe, and despite ES6 @@toStringTag.
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()));
Simply clone the repo, npm install
, and run npm test