Files
geo/server/internal/shared/config/runtime/file/format.go
T

11 lines
160 B
Go
Raw Normal View History

package file
import "strings"
func format(name string) string {
if idx := strings.LastIndexByte(name, '.'); idx >= 0 {
return name[idx+1:]
}
return ""
}