blob: e8acb2610722247343a4a1a0ab27c99a83b729b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|