libs/encodings.lua

Tue, 23 May 2023 19:46:52 +0200

author
Kim Alvefur <zash@zash.se>
date
Tue, 23 May 2023 19:46:52 +0200
changeset 489
39ed19f12dca
parent 432
07a0f9f2e69d
permissions
-rw-r--r--

libs.encodings: Remove unused function

Unused since b496f0262a3f

local mime = require "mime";

module "encodings"

idna = {};
stringprep = {};
base64 = { encode = mime.b64, decode = mime.unb64 };
utf8 = {
	valid = (utf8 and utf8.len) and function (s) return not not utf8.len(s); end or function () return true; end;
};

return _M;

mercurial