Skip to content

Commit

Permalink
Update ProgressWriter.ts
Browse files Browse the repository at this point in the history
to remove angle brackets because it looks better
  • Loading branch information
waffle-lord authored Dec 22, 2024
1 parent 30d620d commit 689ce57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/src/utils/ProgressWriter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class ProgressWriter {
const barFill = this.barFillChar.repeat(filledChars);
const barEmptySpace = this.barEmptyChar.repeat(emptyChars);

const progressBar = `-> ${this.count} / ${this.total} [${barFill}${barEmptySpace}] ${percent}% `;
const progressBar = `-> ${this.count} / ${this.total} ${barFill}${barEmptySpace} ${percent}% `;

readline.cursorTo(process.stdout, 0, null);
process.stdout.write(progressBar);
Expand Down

0 comments on commit 689ce57

Please sign in to comment.