(prefix: string)
| 6 | /* ==================== 工具函数 ==================== */ |
| 7 | |
| 8 | const generateKey = (prefix: string) => `${prefix}-${Date.now()}-${Math.random().toString(36).slice(2)}`; |
| 9 | |
| 10 | const nextTick = () => Promise.resolve(); |
| 11 | /** 强制执行所有已入队微任务与 then 链 */ |
no test coverage detected