* `Option` is missing an argument. * * @param {Option} option * @private
(option)
| 2056 | */ |
| 2057 | |
| 2058 | optionMissingArgument(option) { |
| 2059 | const message = `error: option '${option.flags}' argument missing`; |
| 2060 | this.error(message, { code: 'commander.optionMissingArgument' }); |
| 2061 | } |
| 2062 | |
| 2063 | /** |
| 2064 | * `Option` does not have a value, and is a mandatory option. |