util.serialization: Use util.hex

This commit is contained in:
Kim Alvefur 2019-03-17 21:25:33 +01:00
parent 94ceae0f0b
commit 34f85c79c0

View file

@ -16,6 +16,8 @@ local s_char = string.char;
local s_match = string.match;
local t_concat = table.concat;
local to_hex = require "util.hex".to;
local pcall = pcall;
local envload = require"util.envload".envload;
@ -24,15 +26,6 @@ local m_type = math.type or function (n)
return n % 1 == 0 and n <= 9007199254740992 and n >= -9007199254740992 and "integer" or "float";
end;
local char_to_hex = {};
for i = 0,255 do
char_to_hex[s_char(i)] = s_format("%02x", i);
end
local function to_hex(s)
return (s_gsub(s, ".", char_to_hex));
end
local function rawpairs(t)
return next, t, nil;
end