aboutsummaryrefslogtreecommitdiffstats
path: root/util/jsonpointer.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2022-10-19 16:25:05 +0200
committerKim Alvefur <zash@zash.se>2022-10-19 16:25:05 +0200
commite64c5e30c2ab1f59c5051f2bd66f053d34a6eb25 (patch)
treed5a7cf2782f2c6335eaa221de6eb67cf0c338f63 /util/jsonpointer.lua
parent8fc457681e6dacf2272f4a8e3c1994623c2eab5a (diff)
downloadprosody-e64c5e30c2ab1f59c5051f2bd66f053d34a6eb25.tar.gz
prosody-e64c5e30c2ab1f59c5051f2bd66f053d34a6eb25.zip
util.startup: Provide a common Lua 5.3+ math.type() for Lua 5.2
Code deduplication
Diffstat (limited to 'util/jsonpointer.lua')
-rw-r--r--util/jsonpointer.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/util/jsonpointer.lua b/util/jsonpointer.lua
index 9b871ae7..f1c354a4 100644
--- a/util/jsonpointer.lua
+++ b/util/jsonpointer.lua
@@ -1,6 +1,4 @@
-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 unescape_token(escaped_token)
local unescaped = escaped_token:gsub("~1", "/"):gsub("~0", "~")