Generate a random request ID, used to identify requests between client and server.
a 6-character hexadecimal string
export function makeRequestId(): string { return Math.random().toString(16).substring(2, 8).toUpperCase()} Copy
export function makeRequestId(): string { return Math.random().toString(16).substring(2, 8).toUpperCase()}
Generate a random request ID, used to identify requests between client and server.