( args: ReadonlyArray<string> )
| 822 | } |
| 823 | |
| 824 | const splitForcedArgs = ( |
| 825 | args: ReadonlyArray<string> |
| 826 | ): [Array<string>, Array<string>] => { |
| 827 | const [remainingArgs, forcedArgs] = Arr.span(args, (str) => str !== "--") |
| 828 | return [remainingArgs, Arr.drop(forcedArgs, 1)] |
| 829 | } |
| 830 | |
| 831 | const withDescriptionInternal = ( |
| 832 | self: Instruction, |
no test coverage detected
searching dependent graphs…