学习?学个屁 06c63c15cc 初始化提交 10 mesi fa
..
.github 06c63c15cc 初始化提交 10 mesi fa
test 06c63c15cc 初始化提交 10 mesi fa
.eslintrc 06c63c15cc 初始化提交 10 mesi fa
.nycrc 06c63c15cc 初始化提交 10 mesi fa
CHANGELOG.md 06c63c15cc 初始化提交 10 mesi fa
LICENSE 06c63c15cc 初始化提交 10 mesi fa
README.md 06c63c15cc 初始化提交 10 mesi fa
index.d.ts 06c63c15cc 初始化提交 10 mesi fa
index.js 06c63c15cc 初始化提交 10 mesi fa
package.json 06c63c15cc 初始化提交 10 mesi fa
tsconfig.json 06c63c15cc 初始化提交 10 mesi fa

README.md

which-collection Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Which kind of Collection (Map, Set, WeakMap, WeakSet) is this JavaScript value? Works cross-realm, without instanceof, and despite Symbol.toStringTag.

Example

var whichCollection = require('which-collection');
var assert = require('assert');

assert.equal(false, whichCollection(undefined));
assert.equal(false, whichCollection(null));
assert.equal(false, whichCollection(false));
assert.equal(false, whichCollection(true));
assert.equal(false, whichCollection([]));
assert.equal(false, whichCollection({}));
assert.equal(false, whichCollection(/a/g));
assert.equal(false, whichCollection(new RegExp('a', 'g')));
assert.equal(false, whichCollection(new Date()));
assert.equal(false, whichCollection(42));
assert.equal(false, whichCollection(NaN));
assert.equal(false, whichCollection(Infinity));
assert.equal(false, whichCollection(new Number(42)));
assert.equal(false, whichCollection(42n));
assert.equal(false, whichCollection(Object(42n)));
assert.equal(false, whichCollection('foo'));
assert.equal(false, whichCollection(Object('foo')));
assert.equal(false, whichCollection(function () {}));
assert.equal(false, whichCollection(function* () {}));
assert.equal(false, whichCollection(x => x * x));
assert.equal(false, whichCollection([]));

assert.equal('Map', whichCollection(new Map()));
assert.equal('Set', whichCollection(new Set()));
assert.equal('WeakMap', whichCollection(new WeakMap()));
assert.equal('WeakSet', whichCollection(new WeakSet()));

Tests

Simply clone the repo, npm install, and run npm test