(title, body)
| 190 | } |
| 191 | |
| 192 | function formatSection(title, body) { |
| 193 | return [`## ${title}`, "", body.trim() ? body.trim() : "(none)", ""].join("\n"); |
| 194 | } |
| 195 | |
| 196 | function formatUntrackedFile(cwd, relativePath) { |
| 197 | const absolutePath = path.join(cwd, relativePath); |
no outgoing calls
no test coverage detected