mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.startup: Provide a common Lua 5.3+ math.type() for Lua 5.2
Code deduplication
This commit is contained in:
parent
8fc457681e
commit
e64c5e30c2
4 changed files with 17 additions and 9 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue