(n: number)
| 698 | const ABSORBER = 'src/render/absorber.ts'; |
| 699 | |
| 700 | const inertBulk = (n: number) => ` |
| 701 | export function reconcileLedgerEntry${n}(rows: string[], fallback: string, separator: string): string[] { |
| 702 | const trimmed = rows.map((cell) => cell.trim()).filter((cell) => cell.length > 0 && cell !== separator); |
| 703 | return trimmed.length > 0 ? trimmed : [fallback, separator, String(trimmed.length), 'entry-${n}']; |
| 704 | } |
| 705 | `; |
| 706 | |
| 707 | // Long ENOUGH, in lines, that the absorber cannot ship whole (220 lines is the |
| 708 | // other whole-file gate). That matters: a file that renders whole ignores the |
no outgoing calls
no test coverage detected