mirror of
https://github.com/langgenius/dify.git
synced 2026-02-01 16:41:58 +08:00
4 lines
122 B
TypeScript
4 lines
122 B
TypeScript
export const genActionId = () => {
|
|
return `a${Date.now().toString(36)}${Math.floor(Math.random() * 36).toString(36)}`
|
|
}
|