Kevin 29b9a0c50c clean && clean html base hace 4 años
..
.github 29b9a0c50c clean && clean html base hace 4 años
test 29b9a0c50c clean && clean html base hace 4 años
.editorconfig 29b9a0c50c clean && clean html base hace 4 años
.eslintrc 29b9a0c50c clean && clean html base hace 4 años
.nvmrc 29b9a0c50c clean && clean html base hace 4 años
.travis.yml 29b9a0c50c clean && clean html base hace 4 años
CHANGELOG.md 29b9a0c50c clean && clean html base hace 4 años
LICENSE 29b9a0c50c clean && clean html base hace 4 años
Makefile 29b9a0c50c clean && clean html base hace 4 años
README.md 29b9a0c50c clean && clean html base hace 4 años
index.js 29b9a0c50c clean && clean html base hace 4 años
package.json 29b9a0c50c clean && clean html base hace 4 años

README.md

#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