Konfi-Castle-Kasino/vendor/github.com/labstack/echo/util_go17.go

13 lines
184 B
Go
Raw Normal View History

2017-08-31 16:37:43 +00:00
// +build go1.7, !go1.8
2017-07-12 22:46:08 +00:00
package echo
import (
"net/url"
)
// PathUnescape is wraps `url.QueryUnescape`
func PathUnescape(s string) (string, error) {
return url.QueryUnescape(s)
}