(command: Command)
| 207 | } |
| 208 | |
| 209 | function isHiddenCommand(command: Command): boolean { |
| 210 | return Boolean((command as CommandWithInternals)._hidden); |
| 211 | } |
| 212 | |
| 213 | function isHelpCommand(parent: Command, command: Command): boolean { |
| 214 | const helpCmd = (parent as CommandWithInternals)._helpCommand; |
no outgoing calls
no test coverage detected