(items: Array<string | string[]>)
| 165 | } |
| 166 | |
| 167 | export function prependBullets(items: Array<string | string[]>): string[] { |
| 168 | return items.flatMap(item => |
| 169 | Array.isArray(item) |
| 170 | ? item.map(subitem => ` - ${subitem}`) |
| 171 | : [` - ${item}`], |
| 172 | ) |
| 173 | } |
| 174 | |
| 175 | function getSimpleIntroSection( |
| 176 | outputStyleConfig: OutputStyleConfig | null, |
no outgoing calls
no test coverage detected