Mohammad Asif cf937194cb Removed un-waned things 1. | пре 5 месеци | |
---|---|---|
.. | ||
.github | пре 5 месеци | |
test | пре 5 месеци | |
.editorconfig | пре 5 месеци | |
.eslintignore | пре 5 месеци | |
.eslintrc | пре 5 месеци | |
.gitattributes | пре 5 месеци | |
.nycrc | пре 5 месеци | |
CHANGELOG.md | пре 5 месеци | |
LICENSE | пре 5 месеци | |
README.md | пре 5 месеци | |
index.js | пре 5 месеци | |
package.json | пре 5 месеци |
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