root 3bf41bf355 update 2 yıl önce
..
test 3bf41bf355 update 2 yıl önce
.editorconfig 3bf41bf355 update 2 yıl önce
.jscs.json 3bf41bf355 update 2 yıl önce
.nvmrc 3bf41bf355 update 2 yıl önce
.travis.yml 3bf41bf355 update 2 yıl önce
CHANGELOG.md 3bf41bf355 update 2 yıl önce
LICENSE 3bf41bf355 update 2 yıl önce
README.md 3bf41bf355 update 2 yıl önce
index.js 3bf41bf355 update 2 yıl önce
package.json 3bf41bf355 update 2 yıl önce

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