1
0
2024-02-07 14:56:56 +01:00

5 lines
147 B
TypeScript

const DEFAULT_ID_LENGTH = 9
export function createRandomID(idLength = DEFAULT_ID_LENGTH) {
return Math.random().toString(36).slice(2, idLength)
}