Files
2026-05-21 01:29:27 +08:00

12 lines
227 B
TypeScript

/**
* 辅助工具函数
* 从原项目 src/utils/array.js, dom.js, html.js 迁移
*/
/**
* 生成唯一 ID
*/
export function generateId(): string {
return `${Date.now()}-${Math.random().toString(36).substr(2, 9)}`;
}