Files
lti-api/vendor/github.com/valyala/fasthttp/uri_windows.go
T
GitLab Deploy Bot ad815b3412 .
2025-10-23 11:40:58 +07:00

12 lines
237 B
Go

package fasthttp
func addLeadingSlash(dst, src []byte) []byte {
// zero length 、"C:/" and "a" case
isDisk := len(src) > 2 && src[1] == ':'
if len(src) == 0 || (!isDisk && src[0] != '/') {
dst = append(dst, '/')
}
return dst
}