()
| 210 | ] |
| 211 | |
| 212 | function renderTopicRows(): string { |
| 213 | const width = TOPICS.reduce((max, t) => Math.max(max, t.name.length), 0) + 2 |
| 214 | return TOPICS.map(t => ` ${t.name.padEnd(width)}${t.summary}`).join('\n') |
| 215 | } |
| 216 | |
| 217 | function renderGlobalFlagRows(): string { |
| 218 | const width = GLOBAL_FLAG_HELP.reduce((max, f) => Math.max(max, f.label.length), 0) + 2 |
no test coverage detected