We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a255644 commit 9ba26d8Copy full SHA for 9ba26d8
big-num/notations/Balatro.lua
@@ -26,7 +26,7 @@ function BalaNotation:format(n, places)
26
return string.format(num ~= math.floor(num) and (num >= 100 and "%.0f" or num >= 10 and "%.1f" or "%.2f") or "%.0f", num):reverse():gsub("(%d%d%d)", "%1,"):gsub(",$", ""):reverse()
27
end
28
if n.isNaN and n:isNaN() then
29
- return "NaN"
+ return "nan"
30
31
--The notation here is Hyper-E notation, but with lowercase E.
32
if to_big(n:log10()) < to_big(1000000) then
0 commit comments