Files
pgbackweb/internal/util/strutil/remove_leading_slash.go
T
2024-07-19 23:13:55 -06:00

11 lines
196 B
Go

package strutil
// RemoveLeadingSlash removes the leading slash from a string.
func RemoveLeadingSlash(str string) string {
if len(str) > 0 && str[0] == '/' {
return str[1:]
}
return str
}