1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-09 09:26:54 +00:00
kyverno/pkg/utils/util.go

11 lines
151 B
Go
Raw Normal View History

2019-07-03 11:52:10 -07:00
package utils
func Contains(list []string, element string) bool {
for _, e := range list {
if e == element {
return true
}
}
return false
}