1
0
Fork 0
mirror of https://github.com/thomiceli/opengist.git synced 2025-01-24 23:00:35 +00:00
opengist/internal/utils/slice.go

11 lines
152 B
Go
Raw Normal View History

2023-06-09 15:25:41 +02:00
package utils
func SliceContains(slice []string, item string) bool {
for _, s := range slice {
if s == item {
return true
}
}
return false
}