prc b6c02717e6 Upload complete no-internet building environment. | пре 1 година | |
---|---|---|
.. | ||
.github | пре 1 година | |
test | пре 1 година | |
.editorconfig | пре 1 година | |
.eslintignore | пре 1 година | |
.eslintrc | пре 1 година | |
.gitattributes | пре 1 година | |
.nycrc | пре 1 година | |
CHANGELOG.md | пре 1 година | |
LICENSE | пре 1 година | |
README.md | пре 1 година | |
index.js | пре 1 година | |
package.json | пре 1 година |
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