server/src/utils/random.ts

5 lines
117 B
TypeScript

import { v4 } from 'uuid';
export const getRandomId = v4;
export const getRandomName = () => `Player${Date.now()}`;