(line: string)
| 75 | |
| 76 | const isTableRow = (line: string) => /^\s*\|.*\|\s*$/.test(line); |
| 77 | const parseTableRow = (line: string) => line.trim().replace(/^\|/, "").replace(/\|$/, "").split("|").map((cell) => cell.trim()); |
| 78 | const isSeparatorCell = (cell: string) => /^:?-{3,}:?$/.test(cell.trim()); |
| 79 | |
| 80 | function splitAnalysisBlocks(rawText: string): AnalysisBlock[] { |
no outgoing calls
no test coverage detected