aboutsummaryrefslogtreecommitdiffstats
path: root/teal-src/prosody/util/http.d.tl
blob: ecbe35c3770880bd319b95122255314b575cad0a (plain)
1
2
3
4
5
6
7
8
9
local record lib
	urlencode : function (s : string) : string 
	urldecode : function (s : string) : string 
	formencode : function (f : { string : string }) : string 
	formdecode : function (s : string) : { string : string } 
	contains_token : function (field : string, token : string) : boolean 
	normalize_path : function (path : string) : string 
end
return lib