AeThex-Engine-Core/services/auth-service/node_modules/has-symbols
mrpiglr 190b6b2eab
Some checks are pending
Build AeThex Engine / build-windows (push) Waiting to run
Build AeThex Engine / build-linux (push) Waiting to run
Build AeThex Engine / build-macos (push) Waiting to run
Build AeThex Engine / create-release (push) Blocked by required conditions
Deploy Docsify Documentation / build (push) Waiting to run
Deploy Docsify Documentation / deploy (push) Blocked by required conditions
chore: sync local changes to Forgejo
2026-03-13 00:37:06 -07:00
..
.github chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
test chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
.eslintrc chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
.nycrc chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
CHANGELOG.md chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
index.d.ts chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
index.js chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
LICENSE chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
package.json chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
README.md chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
shams.d.ts chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
shams.js chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
tsconfig.json chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00

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