(textArray: string[])
| 1488 | }; |
| 1489 | |
| 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; |
nothing calls this directly
no outgoing calls
no test coverage detected