mirror of
https://github.com/polaroi8d/cactoide.git
synced 2026-03-23 06:35:29 +00:00
6 lines
144 B
TypeScript
6 lines
144 B
TypeScript
export const generateUserId = () => {
|
|
const userId = 'user_' + Date.now() + '_' + Math.random().toString(36).substr(2, 9);
|
|
|
|
return userId;
|
|
};
|