* Store option value. * * @param {string} key * @param {object} value * @return {Command} `this` command for chaining
(key, value)
| 929 | */ |
| 930 | |
| 931 | setOptionValue(key, value) { |
| 932 | return this.setOptionValueWithSource(key, value, undefined); |
| 933 | } |
| 934 | |
| 935 | /** |
| 936 | * Store option value and where the value came from. |
no test coverage detected