* Factory routine to create a new unattached option. * * See .option() for creating an attached option, which uses this routine to * create the option. You can override createOption to return a custom option. * * @param {string} flags * @param {string} [description] * @return {O
(flags, description)
| 584 | */ |
| 585 | |
| 586 | createOption(flags, description) { |
| 587 | return new Option(flags, description); |
| 588 | } |
| 589 | |
| 590 | /** |
| 591 | * Wrap parseArgs to catch 'commander.invalidArgument'. |
no outgoing calls
no test coverage detected