Files
fasthttp/uri_windows.go
T
Aleksandr Razumov 92ec2638f3 go fmt
2016-05-04 13:22:58 +03:00

13 lines
213 B
Go

// +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
}