1
0
Fork 0

🧑‍💻 Added path package

This commit is contained in:
Maxim Lebedev 2024-02-09 12:18:16 +06:00
parent 678a0905a0
commit e04f408f30
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
1 changed files with 22 additions and 0 deletions

22
path/path.go Normal file
View File

@ -0,0 +1,22 @@
package path
import (
"path"
"strings"
)
// Shift splits off the first component of p, which will be cleaned of relative
// components before processing. head will never contain a slash and tail will
// always be a rooted path without trailing slash.
//
// See: https://blog.merovius.de/posts/2017-06-18-how-not-to-use-an-http-router/
//
//nolint:nonamedreturns // contains multiple same typed returns
func Shift(raw string) (head, tail string) {
raw = path.Clean("/" + raw)
if i := strings.Index(raw[1:], "/") + 1; i <= 0 {
return raw[1:i], raw[i:]
}
return raw[1:], "/"
}