* Set the default value, and optionally supply the description to be displayed in the help. * * @param {*} value * @param {string} [description] * @return {Option}
(value, description)
| 45 | */ |
| 46 | |
| 47 | default(value, description) { |
| 48 | this.defaultValue = value; |
| 49 | this.defaultValueDescription = description; |
| 50 | return this; |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * Preset to use when option used without option-argument, especially optional but also boolean and negated. |
no outgoing calls