(lines)
| 517 | } |
| 518 | |
| 519 | function getUncoveredLines(lines) { |
| 520 | return ArrayPrototypeFlatMap(lines, (line) => (line.count === 0 ? line.line : [])); |
| 521 | } |
| 522 | |
| 523 | function formatUncoveredLines(lines, table) { |
| 524 | if (table) return ArrayPrototypeJoin(formatLinesToRanges(lines), ' '); |
no outgoing calls
no test coverage detected