0
0
mirror of https://github.com/thegeeklab/wp-matrix.git synced 2024-09-19 15:12:47 +02:00
wp-matrix/plugin/util.go

17 lines
307 B
Go
Raw Normal View History

package plugin
import "strings"
// EnsurePrefix ensures that the given input string starts with the provided prefix.
func EnsurePrefix(prefix, input string) string {
if strings.TrimSpace(input) == "" {
return input
}
if strings.HasPrefix(input, prefix) {
return input
}
return prefix + input
}