(command: string | undefined)
| 101 | } |
| 102 | |
| 103 | function isHelpCommand(command: string | undefined): boolean { |
| 104 | return command === 'help'; |
| 105 | } |
| 106 | |
| 107 | function isHelpFlag(arg: string | undefined): boolean { |
| 108 | return arg === '--help' || arg === '-h'; |
no outgoing calls
no test coverage detected