mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.jsonschema: Use same integer/float logic on Lua 5.2 and 5.3
Fixes test case type.json:0:1 covering treatment of 1.0 as an integer according to the JSON definition
This commit is contained in:
parent
060dc12013
commit
bca11bfc73
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
-- This file is generated from teal-src/util/jsonschema.lua
|
||||
|
||||
local m_type = math.type or function (n)
|
||||
return n % 1 == 0 and n <= 9007199254740992 and n >= -9007199254740992 and "integer" or "float";
|
||||
local m_type = function(n)
|
||||
return type(n) == "number" and n % 1 == 0 and n <= 9007199254740992 and n >= -9007199254740992 and "integer" or "float";
|
||||
end;
|
||||
local json = require("util.json")
|
||||
local null = json.null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue