You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
const alphabet = "abcdefghijklmnopqrstuvwxyz0123456789";
|
|
function createBoundary() {
|
|
let size = 16;
|
|
let res = "";
|
|
while (size--) {
|
|
res += alphabet[(Math.random() * alphabet.length) << 0];
|
|
}
|
|
return res;
|
|
}
|
|
export default createBoundary;
|