Files
NianAIGC/lib/server/ids.ts
2026-05-29 10:26:02 +08:00

6 lines
180 B
TypeScript

import { randomBytes } from "node:crypto";
export function createId(prefix: string): string {
return `${prefix}_${Date.now().toString(36)}_${randomBytes(5).toString("hex")}`;
}