( command: string | undefined, helpArg: string | undefined, )
| 88 | } |
| 89 | |
| 90 | function resolveTrailingHelpTarget( |
| 91 | command: string | undefined, |
| 92 | helpArg: string | undefined, |
| 93 | ): string | undefined { |
| 94 | return isHelpFlag(helpArg) ? command : undefined; |
| 95 | } |
| 96 | |
| 97 | function normalizeHelpTarget(command: string): string { |
| 98 | if (command === 'long-press') return 'longpress'; |
no test coverage detected