(value: string, previous: string[])
| 274 | } |
| 275 | |
| 276 | export function collect(value: string, previous: string[]): string[] { |
| 277 | return [...previous, value]; |
| 278 | } |
| 279 | |
| 280 | export function resolveTaskBody(parts: string[]): string { |
| 281 | if (parts.length === 1 && parts[0] === "-") { |
nothing calls this directly
no outgoing calls
no test coverage detected