vlad 6f123ff03e 18.07 il y a 6 ans
..
test 6f123ff03e 18.07 il y a 6 ans
.editorconfig 6f123ff03e 18.07 il y a 6 ans
.eslintrc 6f123ff03e 18.07 il y a 6 ans
.jscs.json 6f123ff03e 18.07 il y a 6 ans
.npmignore 6f123ff03e 18.07 il y a 6 ans
.nvmrc 6f123ff03e 18.07 il y a 6 ans
.travis.yml 6f123ff03e 18.07 il y a 6 ans
CHANGELOG.md 6f123ff03e 18.07 il y a 6 ans
LICENSE 6f123ff03e 18.07 il y a 6 ans
Makefile 6f123ff03e 18.07 il y a 6 ans
README.md 6f123ff03e 18.07 il y a 6 ans
index.js 6f123ff03e 18.07 il y a 6 ans
package.json 6f123ff03e 18.07 il y a 6 ans

README.md

#is-symbol Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

browser support

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