Rip out all the graphviz stuff

This commit is contained in:
Ian Gulliver
2019-07-10 20:34:44 +00:00
parent bc990c48d9
commit 04ec47e393
6 changed files with 0 additions and 61 deletions

View File

@@ -1,12 +1,3 @@
function randStr32() {
let num = Math.floor(Math.random() * Math.pow(2, 32));
return num.toString(16).padStart(8, '0');
}
function randStr64() {
return randStr32() + randStr32();
}
function getOrSet(container, key, newValue) {
let val = container.get(key);
if (!val) {