Files
chat-with-gpt/server/src/utils.ts
Cogent Apps eb58d900b5 v0.2.3
2023-04-15 10:30:02 +00:00

5 lines
124 B
TypeScript

import crypto from 'crypto';
export function randomID(bytes = 16) {
return crypto.randomBytes(bytes).toString('hex');
}