mirror of
https://github.com/labstack/echo.git
synced 2024-11-28 08:38:39 +02:00
dc0f2d7327
Signed-off-by: Vishal Rana <vr@labstack.com>
11 lines
169 B
Go
11 lines
169 B
Go
// +build go1.8
|
|
|
|
package echo
|
|
|
|
import "net/url"
|
|
|
|
// PathUnescape is wraps `url.PathUnescape`
|
|
func PathUnescape(s string) (string, error) {
|
|
return url.PathUnescape(s)
|
|
}
|