Files
super-sphere/lib/utils.lua
T
2017-07-17 23:32:45 -04:00

10 lines
210 B
Lua

function comma_value(amount)
local formatted = amount
while true do
formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)", '%1,%2')
if (k==0) then
break
end
end
return formatted
end