Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-Cena committed Jul 15, 2024
1 parent e32ee30 commit 89a128d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function format(template, ...args) {
...args.map((num) =>
(Object.is(num, -0)
? "-0"
: formattedNumbers.get(num) ?? String(num)
: (formattedNumbers.get(num) ?? String(num))
).padEnd(5),
),
);
Expand Down

0 comments on commit 89a128d

Please sign in to comment.