Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
brainkim committed Feb 15, 2025
1 parent 077e839 commit 72f8ba9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion website/src/models/document.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ interface WalkInfo {
async function* walk(dir: string): AsyncGenerator<WalkInfo> {
const files = (await FS.readdir(dir)).sort();
for (let filename of files) {
console.log(filename);
filename = Path.join(dir, filename);
const stats = await FS.stat(filename);
if (stats.isDirectory()) {
Expand Down

0 comments on commit 72f8ba9

Please sign in to comment.