(line: string)
| 149 | } |
| 150 | |
| 151 | function isTableRow(line: string): boolean { |
| 152 | if (!line) return false; |
| 153 | const t = line.trim(); |
| 154 | return t.startsWith('|') && t.endsWith('|') && t.length > 2 && !isSeparatorRow(t); |
| 155 | } |
| 156 | |
| 157 | function isSeparatorRow(line: string): boolean { |
| 158 | if (!line) return false; |
no test coverage detected