Swap-Aggregator-Subgraph/node_modules/has-symbols
Richa-iitr d211083153 Revert "Revert "added handler""
This reverts commit c36ee8c5ca.
2022-07-03 07:30:05 +05:30
..
.github Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
test Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
.eslintrc Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
.nycrc Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
CHANGELOG.md Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
index.js Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
LICENSE Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
package.json Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
README.md Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30
shams.js Revert "Revert "added handler"" 2022-07-03 07:30:05 +05:30

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