Software /
code /
verse
File
libs/encodings.lua @ 500:674daff6c73b
use util.bitcompat from Prosody for bitwise compat layer
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 23 Jun 2023 12:26:43 +0200 |
parent | 489:39ed19f12dca |
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;