libs/encodings.lua

Thu, 22 Oct 2020 13:58:18 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Thu, 22 Oct 2020 13:58:18 +0100
changeset 431
9d7a293849f3
parent 391
b496f0262a3f
child 432
07a0f9f2e69d
permissions
-rw-r--r--

libs.encodings: Export empty idna table

local function not_impl()
	error("Function not implemented");
end

local mime = require "mime";

module "encodings"

idna = {};
stringprep = {};
base64 = { encode = mime.b64, decode = mime.unb64 };

return _M;

mercurial