setup-go/node_modules/has-symbols
Stephen Franceschelli a966e84ff9 Fix.
2019-07-30 13:30:32 -04:00
..
test Fix. 2019-07-30 13:30:32 -04:00
.eslintrc Fix. 2019-07-30 13:30:32 -04:00
.npmignore Fix. 2019-07-30 13:30:32 -04:00
.travis.yml Fix. 2019-07-30 13:30:32 -04:00
CHANGELOG.md Fix. 2019-07-30 13:30:32 -04:00
index.js Fix. 2019-07-30 13:30:32 -04:00
LICENSE Fix. 2019-07-30 13:30:32 -04:00
package.json Fix. 2019-07-30 13:30:32 -04:00
README.md Fix. 2019-07-30 13:30:32 -04:00
shams.js Fix. 2019-07-30 13:30:32 -04:00

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