MindMap/frontend/node_modules/has-symbols
lixinran 5b73857835 Initial commit: AI思维导图生成器项目
- 基于Django + Vue.js的智能思维导图生成和管理系统
- 支持AI驱动的文档分析和可视化思维导图创建
- 包含完整的前后端代码和文档
2025-09-04 13:47:42 +08:00
..
.github Initial commit: AI思维导图生成器项目 2025-09-04 13:47:42 +08:00
test Initial commit: AI思维导图生成器项目 2025-09-04 13:47:42 +08:00
.eslintrc Initial commit: AI思维导图生成器项目 2025-09-04 13:47:42 +08:00
.nycrc Initial commit: AI思维导图生成器项目 2025-09-04 13:47:42 +08:00
CHANGELOG.md Initial commit: AI思维导图生成器项目 2025-09-04 13:47:42 +08:00
LICENSE Initial commit: AI思维导图生成器项目 2025-09-04 13:47:42 +08:00
README.md Initial commit: AI思维导图生成器项目 2025-09-04 13:47:42 +08:00
index.d.ts Initial commit: AI思维导图生成器项目 2025-09-04 13:47:42 +08:00
index.js Initial commit: AI思维导图生成器项目 2025-09-04 13:47:42 +08:00
package.json Initial commit: AI思维导图生成器项目 2025-09-04 13:47:42 +08:00
shams.d.ts Initial commit: AI思维导图生成器项目 2025-09-04 13:47:42 +08:00
shams.js Initial commit: AI思维导图生成器项目 2025-09-04 13:47:42 +08:00
tsconfig.json Initial commit: AI思维导图生成器项目 2025-09-04 13:47:42 +08: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