mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
util.jsonpointer: Fix Lua <5.3 compat
This commit is contained in:
parent
d05af9f2b5
commit
d9de9b5627
1 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
local m_type = math.type or function (n)
|
||||||
|
return n % 1 == 0 and n <= 9007199254740992 and n >= -9007199254740992 and "integer" or "float";
|
||||||
|
end;
|
||||||
|
|
||||||
local function unescape_token(escaped_token)
|
local function unescape_token(escaped_token)
|
||||||
local unescaped = escaped_token:gsub("~1", "/"):gsub("~0", "~")
|
local unescaped = escaped_token:gsub("~1", "/"):gsub("~0", "~")
|
||||||
return unescaped
|
return unescaped
|
||||||
|
@ -15,7 +19,7 @@ local function resolve_json_pointer(ref, path)
|
||||||
|
|
||||||
if type(idx) == "string" then
|
if type(idx) == "string" then
|
||||||
new_ref = ref[token]
|
new_ref = ref[token]
|
||||||
elseif math.type(idx) == "integer" then
|
elseif m_type(idx) == "integer" then
|
||||||
local i = tonumber(token)
|
local i = tonumber(token)
|
||||||
if token == "-" then
|
if token == "-" then
|
||||||
i = #ref + 1
|
i = #ref + 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue