dify/web/app/components/workflow/nodes/human-input/utils.ts

4 lines
122 B
TypeScript

export const genActionId = () => {
return `a${Date.now().toString(36)}${Math.floor(Math.random() * 36).toString(36)}`
}