(match, user, repo, issue)
| 163 | Issue.parse = function(text, config) { |
| 164 | var instances = []; |
| 165 | var cb = function(match, user, repo, issue) { |
| 166 | instances.push( new Issue(issue, repo, user, match, config) ); |
| 167 | }; |
| 168 | text.replace(config.references.github.pattern, cb); |
| 169 | return instances; |
| 170 | } |
no outgoing calls
no test coverage detected