1
0
Fork 0
mirror of https://codeberg.org/Codeberg/pages-server.git synced 2025-08-10 19:00:54 +00:00
pages-server/server/utils/utils.go

13 lines
162 B
Go

package utils
import (
"strings"
)
func TrimHostPort(host string) string {
i := strings.IndexByte(host, ':')
if i >= 0 {
return host[:i]
}
return host
}