cebol/lib/utils.ts

6 lines
140 B
TypeScript
Raw Permalink Normal View History

2024-04-13 16:04:32 +07:00
import crypto from "node:crypto";
export const randomChars = (length = 8) => {
return crypto.randomBytes(length / 2).toString("hex");
};