File

libs/encodings.lua @ 423:e98cef597393

plugins.disco: Fix to use util.caps instead of broken hacky implementation
author Matthew Wild <mwild1@gmail.com>
date Wed, 27 Jun 2018 19:19:11 +0100
parent 391:b496f0262a3f
child 431:9d7a293849f3
line wrap: on
line source

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

local mime = require "mime";

module "encodings"

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

return _M;