util.jsonschema: Silence Teal warnings about utf8 library

Teal worries that we redefine the global.

Also that the fallback was missing type information.
This commit is contained in:
Kim Alvefur 2023-06-17 17:17:44 +02:00
parent c8b5d7e99a
commit f0242ae57c
2 changed files with 4 additions and 4 deletions

View file

@ -11,8 +11,8 @@
if not math.type then require "prosody.util.mathcompat" end if not math.type then require "prosody.util.mathcompat" end
local utf8 = rawget(_G, "utf8") or require"prosody.util.encodings".utf8; local utf8_enc = rawget(_G, "utf8") or require"prosody.util.encodings".utf8;
local utf8_len = utf8.len or function(s) local utf8_len = utf8_enc.len or function(s : string) : integer
local _, count = s:gsub("[%z\001-\127\194-\253][\128-\191]*", ""); local _, count = s:gsub("[%z\001-\127\194-\253][\128-\191]*", "");
return count; return count;
end; end;

View file

@ -4,8 +4,8 @@ local m_type = function(n)
return type(n) == "number" and n % 1 == 0 and n <= 9007199254740992 and n >= -9007199254740992 and "integer" or "float"; return type(n) == "number" and n % 1 == 0 and n <= 9007199254740992 and n >= -9007199254740992 and "integer" or "float";
end; end;
local utf8 = rawget(_G, "utf8") or require("prosody.util.encodings").utf8; local utf8_enc = rawget(_G, "utf8") or require("prosody.util.encodings").utf8;
local utf8_len = utf8.len or function(s) local utf8_len = utf8_enc.len or function(s)
local _, count = s:gsub("[%z\001-\127\194-\253][\128-\191]*", ""); local _, count = s:gsub("[%z\001-\127\194-\253][\128-\191]*", "");
return count return count
end; end;