Files
timmy-config/go/pkg/mod/github.com/valyala/fasthttp@v1.51.0/uri_unix.go
2026-03-31 20:02:01 +00: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
}