10 lines
239 B
JavaScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
const alphabet = "abcdefghijklmnopqrstuvwxyz0123456789";
export function createBoundary() {
let size = 16;
let res = "";
while (size--) {
res += alphabet[(Math.random() * alphabet.length) << 0];
}
return res;
}