view teal-src/util/http.d.tl @ 12853:e1a71e83d430

util.struct: Fix typo in comment
author Kim Alvefur <zash@zash.se>
date Fri, 20 Jan 2023 18:19:34 +0100
parents 113f3912c7cb
children
line wrap: on
line source

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