peach a19a732be8 commit message | 2 gadi atpakaļ | |
---|---|---|
.. | ||
.github | 2 gadi atpakaļ | |
test | 2 gadi atpakaļ | |
.editorconfig | 2 gadi atpakaļ | |
.eslintignore | 2 gadi atpakaļ | |
.eslintrc | 2 gadi atpakaļ | |
.nycrc | 2 gadi atpakaļ | |
CHANGELOG.md | 2 gadi atpakaļ | |
LICENSE | 2 gadi atpakaļ | |
README.md | 2 gadi atpakaļ | |
index.js | 2 gadi atpakaļ | |
package.json | 2 gadi atpakaļ |
Is this an ES6 Symbol value?
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'))));
Simply clone the repo, npm install
, and run npm test