mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
11 lines
147 B
Go
11 lines
147 B
Go
package utils
|
|
|
|
func Contains(slice []string, item string) bool {
|
|
for _, s := range slice {
|
|
if s == item {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|