mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-19 21:46:19 +00:00
14 lines
274 B
Go
14 lines
274 B
Go
package util
|
|
|
|
import "strings"
|
|
|
|
// HasPrefixes returns true if the string s has any of the given prefixes.
|
|
func HasPrefixes(src string, prefixes ...string) bool {
|
|
for _, prefix := range prefixes {
|
|
if strings.HasPrefix(src, prefix) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|