5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-01-30 07:44:38 +00:00

13 lines
184 B
Go
Raw Normal View History

2017-12-07 23:00:56 +01:00
// +build go1.7, !go1.8
package echo
import (
"net/url"
)
// PathUnescape is wraps `url.QueryUnescape`
func PathUnescape(s string) (string, error) {
return url.QueryUnescape(s)
}