mirror of
https://github.com/rustfs/console.git
synced 2026-09-01 15:17:45 +08:00
7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
import { randomUUID } from "./functions"
|
|
|
|
export function createTaskId(seed: string): string {
|
|
const prefix = Date.now()
|
|
return `${prefix}-${randomUUID()}-${seed}`
|
|
}
|