webhook-action/node_modules/has-symbols
Joel Male 29d4f522f2 update modules 2022-11-10 20:43:16 +10:00
..
.github update modules 2022-11-10 20:43:16 +10:00
test update modules 2022-11-10 20:43:16 +10:00
.eslintrc Add node_modules until bundler is added 2020-08-26 09:57:08 +10:00
CHANGELOG.md update modules 2022-11-10 20:43:16 +10:00
LICENSE Add node_modules until bundler is added 2020-08-26 09:57:08 +10:00
README.md update modules 2022-11-10 20:43:16 +10:00
index.js update modules 2022-11-10 20:43:16 +10:00
package.json update modules 2022-11-10 20:43:16 +10:00
shams.js update modules 2022-11-10 20:43:16 +10:00

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