Shannon_mu 9ea635a2dc 停车场 vor 2 Jahren
..
.github 9ea635a2dc 停车场 vor 2 Jahren
test 9ea635a2dc 停车场 vor 2 Jahren
.editorconfig 9ea635a2dc 停车场 vor 2 Jahren
.eslintignore 9ea635a2dc 停车场 vor 2 Jahren
.eslintrc 9ea635a2dc 停车场 vor 2 Jahren
.nycrc 9ea635a2dc 停车场 vor 2 Jahren
CHANGELOG.md 9ea635a2dc 停车场 vor 2 Jahren
LICENSE 9ea635a2dc 停车场 vor 2 Jahren
README.md 9ea635a2dc 停车场 vor 2 Jahren
index.js 9ea635a2dc 停车场 vor 2 Jahren
package.json 9ea635a2dc 停车场 vor 2 Jahren

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