solorice/vscodium/extensions/oderwat.indent-rainbow-8.3.1/node_modules/has-symbols
2022-04-28 21:17:01 +03:00
..
.github Added vscodium 2022-04-28 21:17:01 +03:00
test Added vscodium 2022-04-28 21:17:01 +03:00
.eslintignore Added vscodium 2022-04-28 21:17:01 +03:00
.eslintrc Added vscodium 2022-04-28 21:17:01 +03:00
.nycrc Added vscodium 2022-04-28 21:17:01 +03:00
CHANGELOG.md Added vscodium 2022-04-28 21:17:01 +03:00
index.js Added vscodium 2022-04-28 21:17:01 +03:00
LICENSE Added vscodium 2022-04-28 21:17:01 +03:00
package.json Added vscodium 2022-04-28 21:17:01 +03:00
README.md Added vscodium 2022-04-28 21:17:01 +03:00
shams.js Added vscodium 2022-04-28 21:17:01 +03: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