Files
maher 511fad8199
Build / run (push) Has been cancelled
Initial commit
2026-05-14 13:42:10 +02:00

12 lines
301 B
TypeScript
Executable File

export function randomString(length: number = 36) {
let random = '';
const possible =
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
for (let i = 0; i < length; i += 1) {
random += possible.charAt(Math.floor(Math.random() * possible.length));
}
return random;
}