6 lines
173 B
TypeScript
6 lines
173 B
TypeScript
// generate random channel id
|
|
|
|
export const generateChannel = () => {
|
|
return Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
|
|
};
|