mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-04-05 18:01:34 +02:00
fix money formatting for amount under 1000
This commit is contained in:
@ -53,6 +53,9 @@ class NumeralFormatter {
|
||||
}
|
||||
|
||||
formatMoney(n: number): string {
|
||||
if(n < 1000) {
|
||||
return this.format(n, "$0.00");
|
||||
}
|
||||
return this.format(n, "$0.000a");
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user