Skip to content

Commit

Permalink
npm run build
Browse files Browse the repository at this point in the history
  • Loading branch information
michielbdejong committed Oct 18, 2024
1 parent 3908882 commit 5f39f48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BirdsEyeWorm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export class BirdsEyeWorm {
async runWorm(): Promise<void> {
let path = [];
let numLoopsFound = 0;
let progressPrinter = setInterval(() => {
const progressPrinter = setInterval(() => {
console.log(`Found ${numLoopsFound} loops so far`);
}, 1000);
let newStep = this.graph.getFirstNode();
Expand Down

0 comments on commit 5f39f48

Please sign in to comment.