libs/encodings.lua

Sat, 21 Aug 2010 15:53:16 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Sat, 21 Aug 2010 15:53:16 +0100
changeset 107
59c6f2deb8ab
parent 0
caf260adc453
child 130
5de7f66e4168
permissions
-rw-r--r--

libs/encodings.lua: Throw error when calling unimplemented function

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

module "encodings"

stringprep = {};
base64 = { encode = not_impl, decode = not_impl };

return _M;

mercurial