Software /
code /
verse
File
libs/encodings.lua @ 489:39ed19f12dca
libs.encodings: Remove unused function
Unused since b496f0262a3f
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 23 May 2023 19:46:52 +0200 |
parent | 432:07a0f9f2e69d |
line wrap: on
line source
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;