()
| 98 | }; |
| 99 | |
| 100 | const processDetailsContent = (): void => { |
| 101 | for (const line of detailsContent) { |
| 102 | const trimmed = line.trim(); |
| 103 | if (trimmed.startsWith('-') && trimmed.includes('(#')) { |
| 104 | const entry = createEntry(trimmed, 'internal'); |
| 105 | addEntry(entry); |
| 106 | } |
| 107 | } |
| 108 | detailsContent = []; |
| 109 | }; |
| 110 | |
| 111 | for (const line of unreleasedLines) { |
| 112 | // Skip undefined/null lines |
no test coverage detected