mirror of
https://github.com/rustfs/console.git
synced 2026-08-29 03:52:28 +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}`
|
|
}
|