Spaces:
Sleeping
Sleeping
| import { randomBytes } from "node:crypto"; | |
| export function newId(prefix: string): string { | |
| return `${prefix}_${randomBytes(12).toString("hex")}`; | |
| } | |
| import { randomBytes } from "node:crypto"; | |
| export function newId(prefix: string): string { | |
| return `${prefix}_${randomBytes(12).toString("hex")}`; | |
| } | |