1
0
mirror of https://github.com/go-task/task.git synced 2025-03-19 21:17:46 +02:00

11 lines
151 B
Go
Raw Normal View History

package taskfile
func stringSliceContains(s []string, str string) bool {
for _, v := range s {
if v == str {
return true
}
}
return false
}