4 lines
102 B
TypeScript
4 lines
102 B
TypeScript
export const uniqueID = (length = 16) => {
|
|
return Math.random().toString(36).substring(2, length)
|
|
}
|