mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +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
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue