( command: string | undefined, helpArg: string | undefined, )
| 80 | } |
| 81 | |
| 82 | function resolveTwoArgHelpTarget( |
| 83 | command: string | undefined, |
| 84 | helpArg: string | undefined, |
| 85 | ): string | undefined { |
| 86 | if (isHelpCommand(command)) return helpArg; |
| 87 | return resolveTrailingHelpTarget(command, helpArg); |
| 88 | } |
| 89 | |
| 90 | function resolveTrailingHelpTarget( |
| 91 | command: string | undefined, |
no test coverage detected