(output: string[], title: string, items: string[])
| 1490 | const formatList = (textArray: string[]) => textArray.join("\n"); |
| 1491 | |
| 1492 | const addSection = (output: string[], title: string, items: string[]) => |
| 1493 | items.length > 0 ? [...output, sectionTitle(title), formatList(items), ""] : output; |
| 1494 | |
| 1495 | // Header — a branded, divided title for the screen. |
| 1496 | let output = [ |
nothing calls this directly
no outgoing calls
no test coverage detected