machinecat520 314d935be9 'message' há 2 anos atrás
..
.github 314d935be9 'message' há 2 anos atrás
test 314d935be9 'message' há 2 anos atrás
.eslintrc 314d935be9 'message' há 2 anos atrás
.nycrc 314d935be9 'message' há 2 anos atrás
CHANGELOG.md 314d935be9 'message' há 2 anos atrás
LICENSE 314d935be9 'message' há 2 anos atrás
README.md 314d935be9 'message' há 2 anos atrás
index.js 314d935be9 'message' há 2 anos atrás
package.json 314d935be9 'message' há 2 anos atrás
shams.js 314d935be9 'message' há 2 anos atrás

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