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

@ -21,6 +21,10 @@ local to_hex = require "util.hex".to;
local pcall = pcall;
local envload = require"util.envload".envload;
if not math.type then
require "util.mathcompat"
end
local pos_inf, neg_inf = math.huge, -math.huge;
local m_type = math.type;