You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
王厅 539a1f95cc vue + ant-design + vxe-table 3 weeks ago
..
.github vue + ant-design + vxe-table 3 weeks ago
test vue + ant-design + vxe-table 3 weeks ago
.editorconfig vue + ant-design + vxe-table 3 weeks ago
.eslintrc vue + ant-design + vxe-table 3 weeks ago
.nycrc vue + ant-design + vxe-table 3 weeks ago
CHANGELOG.md vue + ant-design + vxe-table 3 weeks ago
LICENSE vue + ant-design + vxe-table 3 weeks ago
README.md vue + ant-design + vxe-table 3 weeks ago
index.d.ts vue + ant-design + vxe-table 3 weeks ago
index.js vue + ant-design + vxe-table 3 weeks ago
package.json vue + ant-design + vxe-table 3 weeks ago
tsconfig.json vue + ant-design + vxe-table 3 weeks ago

README.md

is-symbol Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Is this an ES6 Symbol value?

Example

var isSymbol = require('is-symbol');
assert(!isSymbol(function () {}));
assert(!isSymbol(null));
assert(!isSymbol(function* () { yield 42; return Infinity; });

assert(isSymbol(Symbol.iterator));
assert(isSymbol(Symbol('foo')));
assert(isSymbol(Symbol.for('foo')));
assert(isSymbol(Object(Symbol('foo'))));

Tests

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