Package Exports
- is-set
- is-set/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-set) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
is-set 
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