func inArray()

in cli/completer.go [93:100]


func inArray(s string, array []string) bool {
	for _, item := range array {
		if s == item {
			return true
		}
	}
	return false
}