InternetProgramming/Lab3/node_modules/is-symbol
2023-12-15 14:42:22 +04:00
..
.github Лаб 4 2023-12-15 14:42:22 +04:00
test Лаб 4 2023-12-15 14:42:22 +04:00
.editorconfig Лаб 4 2023-12-15 14:42:22 +04:00
.eslintignore Лаб 4 2023-12-15 14:42:22 +04:00
.eslintrc Лаб 4 2023-12-15 14:42:22 +04:00
.nycrc Лаб 4 2023-12-15 14:42:22 +04:00
CHANGELOG.md Лаб 4 2023-12-15 14:42:22 +04:00
index.js Лаб 4 2023-12-15 14:42:22 +04:00
LICENSE Лаб 4 2023-12-15 14:42:22 +04:00
package.json Лаб 4 2023-12-15 14:42:22 +04:00
README.md Лаб 4 2023-12-15 14:42:22 +04: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