We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 077e839 commit 72f8ba9Copy full SHA for 72f8ba9
website/src/models/document.ts
@@ -11,7 +11,6 @@ interface WalkInfo {
11
async function* walk(dir: string): AsyncGenerator<WalkInfo> {
12
const files = (await FS.readdir(dir)).sort();
13
for (let filename of files) {
14
- console.log(filename);
15
filename = Path.join(dir, filename);
16
const stats = await FS.stat(filename);
17
if (stats.isDirectory()) {
0 commit comments