From 1a8cdaad24789d75d9453351aff19b434e1ea5c9 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Tue, 28 Dec 2021 00:43:01 +0000
Subject: [PATCH] remove console.log
---
layouts/partials/graph.html | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/layouts/partials/graph.html b/layouts/partials/graph.html
index e8cd966..cd5577f 100644
--- a/layouts/partials/graph.html
+++ b/layouts/partials/graph.html
@@ -26,7 +26,6 @@
while (depth >= 0 && wl.length > 0) {
// compute neighbours
const cur = wl.shift()
- console.log(depth, cur, wl)
if (cur === "__SENTINEL") {
depth--
wl.push("__SENTINEL")
@@ -34,7 +33,6 @@
neighbours.add(cur)
const outgoing = index.links[cur] || []
const incoming = index.backlinks[cur] || []
- console.log(incoming)
wl.push(...outgoing.map(l => l.target), ...incoming.map(l => l.source))
}
}
--
Gitblit v1.10.0