APPLE 025c69e553 wesmiler 点什么广告 3 лет назад
..
test 025c69e553 wesmiler 点什么广告 3 лет назад
.editorconfig 025c69e553 wesmiler 点什么广告 3 лет назад
.eslintrc 025c69e553 wesmiler 点什么广告 3 лет назад
.jscs.json 025c69e553 wesmiler 点什么广告 3 лет назад
.nvmrc 025c69e553 wesmiler 点什么广告 3 лет назад
.travis.yml 025c69e553 wesmiler 点什么广告 3 лет назад
CHANGELOG.md 025c69e553 wesmiler 点什么广告 3 лет назад
LICENSE 025c69e553 wesmiler 点什么广告 3 лет назад
Makefile 025c69e553 wesmiler 点什么广告 3 лет назад
README.md 025c69e553 wesmiler 点什么广告 3 лет назад
index.js 025c69e553 wesmiler 点什么广告 3 лет назад
package.json 025c69e553 wesmiler 点什么广告 3 лет назад

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