(n: number)
| 201 | * a file scoring twice its score purely by being small enough to ship whole. |
| 202 | */ |
| 203 | const helperFiller = (n: number) => ` |
| 204 | export function normalizeLedgerRow${n}(row: string[], fallback: string): string[] { |
| 205 | const trimmed = row.map((cell) => cell.trim()).filter((cell) => cell.length > 0); |
| 206 | return trimmed.length > 0 ? trimmed : [fallback]; |
| 207 | } |
| 208 | `; |
| 209 | |
| 210 | const ALLOCATOR_SOURCE = ` |
| 211 | /** Explore budget allocation: splits the output envelope across relevant files. */ |
no outgoing calls
no test coverage detected