stargaze-studio/utils/random.ts
2022-07-13 16:56:36 +03:00

2 lines
88 B
TypeScript

export const uid = (length = 8) => (Math.random() * 1e32).toString(36).slice(0, length)