func find()

in code/function/function.go [135:143]


func find(sl []string, sub string) bool {
	for _, v := range sl {
		if v == sub {
			return true
		}
	}

	return false
}