blob: 58aefa5e4012d4c8f0a1b4cd462174b426ee6e3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
-- TODO many actually return Maybe(String)
local record lib
record base64
encode : function (s : string) : string
decode : function (s : string) : string
end
record stringprep
nameprep : function (s : string, strict : boolean) : string
nodeprep : function (s : string, strict : boolean) : string
resourceprep : function (s : string, strict : boolean) : string
saslprep : function (s : string, strict : boolean) : string
end
record idna
to_ascii : function (s : string) : string
to_unicode : function (s : string) : string
end
record utf8
valid : function (s : string) : boolean
length : function (s : string) : integer
end
record confusable
skeleton : function (s : string) : string
end
version : string
end
return lib
|