blob: 8a37785bf28d0d41f85c30de3eba23a23badd01a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// +build go1.8
package echo
import "net/url"
// PathUnescape is wraps `url.PathUnescape`
func PathUnescape(s string) (string, error) {
return url.PathUnescape(s)
}
|