Files
stfs/internal/pathext/path.go
2021-12-19 22:40:52 +01:00

6 lines
116 B
Go

package pathext
func IsRoot(path string) bool {
return path == "" || path == "." || path == "/" || path == "./"
}