()
| 23 | * ``` |
| 24 | */ |
| 25 | export function generateGUID(): string { |
| 26 | // 优先使用原生 crypto API(浏览器和 Node.js 19+) |
| 27 | if (typeof crypto !== 'undefined' && typeof crypto.randomUUID === 'function') { |
| 28 | return crypto.randomUUID(); |
| 29 | } |
| 30 | |
| 31 | // 降级方案:使用 crypto.getRandomValues 或 Math.random |
| 32 | return generateGUIDFallback(); |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * 降级 GUID 生成实现 |
no test coverage detected