in pkg/repo/query.go [177:185]
func sliceContains(s []string, e string) bool { for _, k := range s { if k == e { return true } } return false }