(values []string, target string)
| 1587 | } |
| 1588 | |
| 1589 | func containsString(values []string, target string) bool { |
| 1590 | for _, value := range values { |
| 1591 | if value == target { |
| 1592 | return true |
| 1593 | } |
| 1594 | } |
| 1595 | return false |
| 1596 | } |
no outgoing calls
no test coverage detected