Files
lti-api/vendor/github.com/valyala/fasthttp/uri_unix.go
T
GitLab Deploy Bot bb60e987e5 .
2025-10-21 23:45:13 +07:00

13 lines
203 B
Go

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