(s *[]string)
| 207 | } |
| 208 | |
| 209 | func ghIds(s *[]string) *[]githubv4.ID { |
| 210 | if s == nil { |
| 211 | return nil |
| 212 | } |
| 213 | ids := make([]githubv4.ID, len(*s)) |
| 214 | for i, v := range *s { |
| 215 | ids[i] = v |
| 216 | } |
| 217 | return &ids |
| 218 | } |
| 219 | |
| 220 | func ghId(s *string) *githubv4.ID { |
| 221 | if s == nil { |
no outgoing calls
no test coverage detected