Spaces:
Running
Running
File size: 263 Bytes
51ddcbf |
1 2 3 4 5 6 7 8 9 10 11 |
const alphabet = "abcdefghijklmnopqrstuvwxyz0123456789";
function createBoundary() {
let size = 16;
let res = "";
while (size--) {
res += alphabet[(Math.random() * alphabet.length) << 0];
}
return res;
}
export default createBoundary;
|