SYS-REQ-113
(path []string)
| 149 | |
| 150 | // SYS-REQ-113 |
| 151 | func wildcardIndex(path []string) int { |
| 152 | for i, component := range path { |
| 153 | if component == wildcardPathComponent { |
| 154 | return i |
| 155 | } |
| 156 | } |
| 157 | return -1 |
| 158 | } |
no outgoing calls
no test coverage detected