chenrui  c2abfadd11 add 3 년 전
..
.github c2abfadd11 add 3 년 전
test c2abfadd11 add 3 년 전
.editorconfig c2abfadd11 add 3 년 전
.eslintrc c2abfadd11 add 3 년 전
.nvmrc c2abfadd11 add 3 년 전
.travis.yml c2abfadd11 add 3 년 전
CHANGELOG.md c2abfadd11 add 3 년 전
LICENSE c2abfadd11 add 3 년 전
Makefile c2abfadd11 add 3 년 전
README.md c2abfadd11 add 3 년 전
index.js c2abfadd11 add 3 년 전
package.json c2abfadd11 add 3 년 전

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