1
0
Fork 0
mirror of https://github.com/Luzifer/korvike.git synced 2024-11-08 15:30:05 +00:00
korvike/functions/func_urlescape.go

8 lines
101 B
Go
Raw Normal View History

package functions
import "net/url"
func init() {
registerFunction("urlescape", url.QueryEscape)
}