github-pages-deploy-action/node_modules/is-symbol
2020-03-31 08:40:00 -04:00
..
.github Release 2020-03-21 17:13:25 -04:00
test Release 2020-03-21 17:13:25 -04:00
.editorconfig Dependencies Required 2020-01-28 00:07:56 -05:00
.eslintrc Release 2020-03-21 17:13:25 -04:00
.nvmrc Dependencies Required 2020-01-28 00:07:56 -05:00
.travis.yml Release 2020-03-21 17:13:25 -04:00
CHANGELOG.md Release 2020-03-21 17:13:25 -04:00
index.js Dependencies Required 2020-01-28 00:07:56 -05:00
LICENSE Dependencies Required 2020-01-28 00:07:56 -05:00
Makefile Dependencies Required 2020-01-28 00:07:56 -05:00
package.json 3.4.3 2020-03-31 08:40:00 -04:00
README.md Release 2020-03-21 17:13:25 -04:00

#is-symbol Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

[![browser support][9]][10]

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