diff options
author | Kim Alvefur <zash@zash.se> | 2022-10-20 16:50:12 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-10-20 16:50:12 +0200 |
commit | e2cff346410c57686478d68fabd96cf4247df927 (patch) | |
tree | fb9c06de4cf1cdf18ba13292df824fd8cd7af5ee /util/serialization.lua | |
parent | e64c5e30c2ab1f59c5051f2bd66f053d34a6eb25 (diff) | |
download | prosody-e2cff346410c57686478d68fabd96cf4247df927.tar.gz prosody-e2cff346410c57686478d68fabd96cf4247df927.zip |
util.mathcompat: Module to ease reuse of math.type()
Mostly to ensure it is available during tests, as util.startup is not
invoked there
Diffstat (limited to 'util/serialization.lua')
-rw-r--r-- | util/serialization.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/serialization.lua b/util/serialization.lua index 6552d53b..e2e104f1 100644 --- a/util/serialization.lua +++ b/util/serialization.lua @@ -21,6 +21,10 @@ local to_hex = require "util.hex".to; local pcall = pcall; local envload = require"util.envload".envload; +if not math.type then + require "util.mathcompat" +end + local pos_inf, neg_inf = math.huge, -math.huge; local m_type = math.type; |