prc b6c02717e6 Upload complete no-internet building environment. | hai 1 ano | |
---|---|---|
.. | ||
.github | hai 1 ano | |
test | hai 1 ano | |
.editorconfig | hai 1 ano | |
.eslintignore | hai 1 ano | |
.eslintrc | hai 1 ano | |
.gitattributes | hai 1 ano | |
.nycrc | hai 1 ano | |
CHANGELOG.md | hai 1 ano | |
LICENSE | hai 1 ano | |
README.md | hai 1 ano | |
index.js | hai 1 ano | |
package.json | hai 1 ano |
Is this value a JS Map? This module works cross-realm/iframe, and despite ES6 @@toStringTag.
var isMap = require('is-map');
assert(!isMap(function () {}));
assert(!isMap(null));
assert(!isMap(function* () { yield 42; return Infinity; });
assert(!isMap(Symbol('foo')));
assert(!isMap(1n));
assert(!isMap(Object(1n)));
assert(!isMap(new Set()));
assert(!isMap(new WeakSet()));
assert(!isMap(new WeakMap()));
assert(isMap(new Map()));
class MyMap extends Map {}
assert(isMap(new MyMap()));
Simply clone the repo, npm install
, and run npm test