my-idlers/node_modules/has-symbols
cp6 fd22b0bf58 V2 (Laravel re-make)
V2 (Laravel re-make)
2022-03-06 02:02:12 +11:00
..
.github V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
test V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
.eslintignore V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
.eslintrc V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
.nycrc V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
CHANGELOG.md V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
index.js V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
LICENSE V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
package.json V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
README.md V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00
shams.js V2 (Laravel re-make) 2022-03-06 02:02:12 +11:00

has-symbols Version Badge

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