1
2
export const randomString = (length: number) =>
[...Array(length)].map(() => Math.random().toString(36)[2]).join("");