mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-08 19:34:56 +02:00
10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
const alphabet = "abcdefghijklmnopqrstuvwxyz0123456789";
|
|
export function createBoundary() {
|
|
let size = 16;
|
|
let res = "";
|
|
while (size--) {
|
|
res += alphabet[(Math.random() * alphabet.length) << 0];
|
|
}
|
|
return res;
|
|
}
|