Files
fasthttp/uri_windows.go
T
2021-09-02 00:18:53 +02:00

14 lines
232 B
Go

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