auth/node_modules/has-symbols
Chandresh Kerkar 9dd376df76 Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
..
.github Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
test Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
.eslintrc Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
.nycrc Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
CHANGELOG.md Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
LICENSE Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
README.md Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
index.d.ts Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
index.js Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
package.json Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
shams.d.ts Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
shams.js Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30
tsconfig.json Initial commit: Farm Auth Service with multi-device support and device management 2025-11-28 00:47:10 +05:30

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