Files
super-sphere/lib/utils.lua
T
2017-07-18 20:16:56 -04:00

10 lines
219 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