mirror of
https://github.com/router-for-me/Cli-Proxy-API-Management-Center.git
synced 2026-06-16 21:03:58 +08:00
12 lines
227 B
TypeScript
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)}`;
|
|
}
|