util.startup: Provide a common Lua 5.3+ math.type() for Lua 5.2

Code deduplication
This commit is contained in:
Kim Alvefur 2022-10-19 16:25:05 +02:00
parent 8fc457681e
commit e64c5e30c2
4 changed files with 17 additions and 9 deletions

View file

@ -22,9 +22,7 @@ local pcall = pcall;
local envload = require"util.envload".envload;
local pos_inf, neg_inf = math.huge, -math.huge;
local m_type = math.type or function (n)
return n % 1 == 0 and n <= 9007199254740992 and n >= -9007199254740992 and "integer" or "float";
end;
local m_type = math.type;
local function rawpairs(t)
return next, t, nil;