initial import

This commit is contained in:
zadam
2019-07-19 20:35:53 +02:00
commit 8d28c14133
28 changed files with 6037 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
function randomString(len) {
let text = "";
const possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for (let i = 0; i < len; i++) {
text += possible.charAt(Math.floor(Math.random() * possible.length));
}
return text;
}