lihai 8d6c751f49 feat: push лет назад: 2
..
test 8d6c751f49 feat: push лет назад: 2
.editorconfig 8d6c751f49 feat: push лет назад: 2
.eslintrc 8d6c751f49 feat: push лет назад: 2
.jscs.json 8d6c751f49 feat: push лет назад: 2
.nvmrc 8d6c751f49 feat: push лет назад: 2
.travis.yml 8d6c751f49 feat: push лет назад: 2
CHANGELOG.md 8d6c751f49 feat: push лет назад: 2
LICENSE 8d6c751f49 feat: push лет назад: 2
Makefile 8d6c751f49 feat: push лет назад: 2
README.md 8d6c751f49 feat: push лет назад: 2
index.js 8d6c751f49 feat: push лет назад: 2
package.json 8d6c751f49 feat: push лет назад: 2

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