astro-ghostcms/.pnpm-store/v3/files/1a/f687ff12a58e4950d9a2d2e1f8d...

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;
}