Split into file-per-class

This commit is contained in:
Ian Gulliver
2019-07-03 01:42:17 +00:00
parent 275c64c00b
commit 5824f516b0
12 changed files with 1501 additions and 1495 deletions

8
utils.js Normal file
View File

@@ -0,0 +1,8 @@
function randStr32() {
let num = Math.floor(Math.random() * Math.pow(2, 32));
return num.toString(16).padStart(8, '0');
}
function randStr64() {
return randStr32() + randStr32();
}