mirror of
https://github.com/langgenius/dify.git
synced 2026-07-26 14:18:35 +08:00
6 lines
130 B
TypeScript
6 lines
130 B
TypeScript
import { v4 as uuidV4 } from 'uuid'
|
|
|
|
export function createRequestId() {
|
|
return globalThis.crypto?.randomUUID?.() ?? uuidV4()
|
|
}
|