PIbd-21_Zhirnova_A._E._Inte.../3 proba/node_modules/is-symbol
2023-12-06 21:05:45 +03:00
..
.github Lab3new 2023-12-06 21:05:45 +03:00
test Lab3new 2023-12-06 21:05:45 +03:00
.editorconfig Lab3new 2023-12-06 21:05:45 +03:00
.eslintignore Lab3new 2023-12-06 21:05:45 +03:00
.eslintrc Lab3new 2023-12-06 21:05:45 +03:00
.nycrc Lab3new 2023-12-06 21:05:45 +03:00
CHANGELOG.md Lab3new 2023-12-06 21:05:45 +03:00
index.js Lab3new 2023-12-06 21:05:45 +03:00
LICENSE Lab3new 2023-12-06 21:05:45 +03:00
package.json Lab3new 2023-12-06 21:05:45 +03:00
README.md Lab3new 2023-12-06 21:05:45 +03:00

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