* Retrieve option value. * * @param {string} key * @return {object} value
(key)
| 914 | */ |
| 915 | |
| 916 | getOptionValue(key) { |
| 917 | if (this._storeOptionsAsProperties) { |
| 918 | return this[key]; |
| 919 | } |
| 920 | return this._optionValues[key]; |
| 921 | } |
| 922 | |
| 923 | /** |
| 924 | * Store option value. |
no outgoing calls
no test coverage detected