chat-with-gpt/server/src/utils.ts

5 lines
124 B
TypeScript
Raw Normal View History

2023-03-14 11:00:40 +00:00
import crypto from 'crypto';
2023-04-15 10:30:02 +00:00
export function randomID(bytes = 16) {
return crypto.randomBytes(bytes).toString('hex');
2023-03-14 11:00:40 +00:00
}