auth/vendor/github.com/valyala/fasthttp/uri_windows.go

14 lines
232 B
Go
Raw Normal View History

2022-06-09 17:35:23 +00:00
//go:build windows
// +build windows
package fasthttp
func addLeadingSlash(dst, src []byte) []byte {
// zero length and "C:/" case
if len(src) == 0 || (len(src) > 2 && src[1] != ':') {
dst = append(dst, '/')
}
return dst
}