ether-admin/node_modules/has-tostringtag
chiguyong eb399474f4 init: ether-admin frontend project
- Vue3 + TypeScript + Ant Design Vue
- Auth, User, Role, Project management pages
- Pinia state management
- Vue Router with auth guard
2026-03-19 09:28:30 +08:00
..
.github init: ether-admin frontend project 2026-03-19 09:28:30 +08:00
test init: ether-admin frontend project 2026-03-19 09:28:30 +08:00
.eslintrc init: ether-admin frontend project 2026-03-19 09:28:30 +08:00
.nycrc init: ether-admin frontend project 2026-03-19 09:28:30 +08:00
CHANGELOG.md init: ether-admin frontend project 2026-03-19 09:28:30 +08:00
LICENSE init: ether-admin frontend project 2026-03-19 09:28:30 +08:00
README.md init: ether-admin frontend project 2026-03-19 09:28:30 +08:00
index.d.ts init: ether-admin frontend project 2026-03-19 09:28:30 +08:00
index.js init: ether-admin frontend project 2026-03-19 09:28:30 +08:00
package.json init: ether-admin frontend project 2026-03-19 09:28:30 +08:00
shams.d.ts init: ether-admin frontend project 2026-03-19 09:28:30 +08:00
shams.js init: ether-admin frontend project 2026-03-19 09:28:30 +08:00
tsconfig.json init: ether-admin frontend project 2026-03-19 09:28:30 +08:00

README.md

has-tostringtag Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Determine if the JS environment has Symbol.toStringTag support. Supports spec, or shams.

Example

var hasSymbolToStringTag = require('has-tostringtag');

hasSymbolToStringTag() === true; // if the environment has native Symbol.toStringTag support. Not polyfillable, not forgeable.

var hasSymbolToStringTagKinda = require('has-tostringtag/shams');
hasSymbolToStringTagKinda() === true; // if the environment has a Symbol.toStringTag sham that mostly follows the spec.

Supported Symbol shams

Tests

Simply clone the repo, npm install, and run npm test