mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-20 16:22:56 +02:00
Hotfix number of decimal for very large numbers
This commit is contained in:
@@ -57,7 +57,7 @@ class NumeralFormatter {
|
||||
return this.format(n, "$0.00");
|
||||
}
|
||||
const str = this.format(n, "$0.000a");
|
||||
if(str === "$NaNt") return '$'+this.format(n, '0.000e0');
|
||||
if(str === "$NaNt") return '$'+this.format(n, '0.000e+0');
|
||||
return str;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user