(parent: Command, command: Command)
| 211 | } |
| 212 | |
| 213 | function isHelpCommand(parent: Command, command: Command): boolean { |
| 214 | const helpCmd = (parent as CommandWithInternals)._helpCommand; |
| 215 | return helpCmd === command; |
| 216 | } |
| 217 | |
| 218 | function partitionOptions(options: Option[]): { |
| 219 | flags: Option[]; |
no outgoing calls
no test coverage detected