* Factory routine to create a new unattached command. * * See .command() for creating an attached subcommand, which uses this routine to * create the command. You can override createCommand to customise subcommands. * * @param {string} [name] * @return {Command} new command
(name)
| 191 | */ |
| 192 | |
| 193 | createCommand(name) { |
| 194 | return new Command(name); |
| 195 | } |
| 196 | |
| 197 | /** |
| 198 | * You can customise the help with a subclass of Help by overriding createHelp, |
no outgoing calls
no test coverage detected