Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit há 3 anos
..
.github First Commit há 3 anos
test First Commit há 3 anos
.eslintrc First Commit há 3 anos
.travis.yml First Commit há 3 anos
CHANGELOG.md First Commit há 3 anos
LICENSE First Commit há 3 anos
README.md First Commit há 3 anos
index.js First Commit há 3 anos
package.json First Commit há 3 anos
shams.js First Commit há 3 anos

README.md

has-symbols Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

Determine if the JS environment has Symbol support. Supports spec, or shams.

Example

var hasSymbols = require('has-symbols');

hasSymbols() === true; // if the environment has native Symbol support. Not polyfillable, not forgeable.

var hasSymbolsKinda = require('has-symbols/shams');
hasSymbolsKinda() === true; // if the environment has a Symbol sham that mostly follows the spec.

Supported Symbol shams

Tests

Simply clone the repo, npm install, and run npm test