Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Muqriz 48f16bfc3e initail first il y a 4 mois
..
.github initail first il y a 4 mois
test initail first il y a 4 mois
.eslintrc initail first il y a 4 mois
.nycrc initail first il y a 4 mois
CHANGELOG.md initail first il y a 4 mois
LICENSE initail first il y a 4 mois
README.md initail first il y a 4 mois
index.js initail first il y a 4 mois
package.json initail first il y a 4 mois
shams.js initail first il y a 4 mois

README.md

has-symbols Version Badge

github actions coverage 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