MCPcopy Create free account
hub / github.com/code-scan/Goal / RawDecode

Function RawDecode

Gconvert/url.go:34–41  ·  view source on GitHub ↗
(param string)

Source from the content-addressed store, hash-verified

32}
33
34func RawDecode(param string) string {
35 ret, err := url.QueryUnescape(strings.Replace(param, "%20", "+", -1))
36 if err != nil {
37 log.Println("RawDecode Error: ", err)
38 return ""
39 }
40 return ret
41}

Callers 1

TestConvertFunction · 0.92

Calls

no outgoing calls

Tested by 1

TestConvertFunction · 0.74