IMPORTANT: due to a drive failure, as of 13-Mar-2021, the Mercurial repository had to be re-mirrored, which changed every commit SHA. The old SHAs and trees are backed up in the vault branches. Please migrate to the new branches as soon as you can.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
prosody/util/mathcompat.lua

13 lines
230 B

if not math.type then
local function math_type(t)
if type(t) == "number" then
if t % 1 == 0 and t ~= t + 1 and t ~= t - 1 then
return "integer"
else
return "float"
end
end
end
_G.math.type = math_type
end