(title, issues)
| 151 | printSection("Performance", performance); |
| 152 | |
| 153 | function printSection(title, issues) { |
| 154 | if (issues.length > 0) { |
| 155 | md += "## " + title + "\r\n\r\n"; |
| 156 | issues.forEach(printIssue); |
| 157 | md += "\r\n"; |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | function printIssue(i) { |
| 162 | md += " - [" + i.title + " (#" + i.number + ")](" + i.html_url + ")\r\n"; |
no outgoing calls
no test coverage detected