rkgk/static/random.js

10 lines
275 B
JavaScript
Raw Permalink Normal View History

2025-06-19 13:48:07 +02:00
const charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_";
export function randomId(length = 32) {
let r = "";
for (let i = 0; i < length; ++i) {
r += charset.charAt(Math.floor(Math.random() * charset.length));
}
return r;
}