frontend/.pnpm-store/v3/files/1a/f687ff12a58e4950d9a2d2e1f8dabbdfcb37dfd6e49878b2474a9d3a11cd416d1353d8ed6be635a4db6f844897f4d3442e071bae25f0c7ebdf3d8f8716d4e8

10 lines
239 B
Plaintext

const alphabet = "abcdefghijklmnopqrstuvwxyz0123456789";
export function createBoundary() {
let size = 16;
let res = "";
while (size--) {
res += alphabet[(Math.random() * alphabet.length) << 0];
}
return res;
}