mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
e64c5e30c2
commit
e2cff34641
7 changed files with 41 additions and 10 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue