mirror of https://github.com/bjc/prosody
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.
14 lines
230 B
14 lines
230 B
|
3 years ago
|
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
|