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