util.mathcompat: Module to ease reuse of math.type()

Mostly to ensure it is available during tests, as util.startup is not
invoked there
This commit is contained in:
Kim Alvefur 2022-10-20 16:50:12 +02:00
parent e64c5e30c2
commit e2cff34641
7 changed files with 41 additions and 10 deletions

View file

@ -280,16 +280,7 @@ function startup.init_global_state()
-- COMPAT Lua < 5.3
if not math.type then
-- luacheck: ignore 122/math
function math.type(n)
if type(n) == "number" then
if n % 1 == 0 and (n + 1 ~= n and n - 1 ~= n) then
return "integer"
else
return "float"
end
end
end
require "util.mathcompat"
end
end