mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.jsonschema: Lua <5.3 compat here too
This commit is contained in:
parent
d9de9b5627
commit
6a9efa5a52
1 changed files with 4 additions and 1 deletions
|
@ -1,3 +1,6 @@
|
|||
local m_type = math.type or function (n)
|
||||
return n % 1 == 0 and n <= 9007199254740992 and n >= -9007199254740992 and "integer" or "float";
|
||||
end;
|
||||
local json = require("util.json")
|
||||
local null = json.null;
|
||||
|
||||
|
@ -17,7 +20,7 @@ local function simple_validate(schema, data)
|
|||
elseif schema == "array" and type(data) == "table" then
|
||||
return type(data) == "table" and (next(data) == nil or type((next(data, nil))) == "number")
|
||||
elseif schema == "integer" then
|
||||
return math.type(data) == schema
|
||||
return m_type(data) == schema
|
||||
elseif schema == "null" then
|
||||
return data == null
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue