ripple-api/vendor/github.com/valyala/fasthttp/uri_unix.go
Morgan Bazalgette 736c904f65 Update vendor
2017-02-02 13:53:44 +01:00

13 lines
202 B
Go

// +build !windows
package fasthttp
func addLeadingSlash(dst, src []byte) []byte {
// add leading slash for unix paths
if len(src) == 0 || src[0] != '/' {
dst = append(dst, '/')
}
return dst
}