35c861b711
Co-authored-by: konrad <konrad@kola-entertainments.de>
5 lines
No EOL
148 B
TypeScript
5 lines
No EOL
148 B
TypeScript
const DEFAULT_ID_LENGTH = 9
|
|
|
|
export function createRandomID(idLength = DEFAULT_ID_LENGTH) {
|
|
return Math.random().toString(36).substr(2, idLength)
|
|
} |