5 lines
148 B
TypeScript
5 lines
148 B
TypeScript
|
const DEFAULT_ID_LENGTH = 9
|
||
|
|
||
|
export function createRandomID(idLength = DEFAULT_ID_LENGTH) {
|
||
|
return Math.random().toString(36).substr(2, idLength)
|
||
|
}
|