* Update the settings to use the British pre-defined language options. * Those pre-defined options can be overridden by passing an option object as a parameter. * * @param {object} optionOverride * @returns {AutoNumeric}
(optionOverride = null)
| 4842 | * @returns {AutoNumeric} |
| 4843 | */ |
| 4844 | british(optionOverride = null) { |
| 4845 | this._updatePredefinedOptions(AutoNumeric.getPredefinedOptions().British, optionOverride); |
| 4846 | |
| 4847 | return this; |
| 4848 | } |
| 4849 | |
| 4850 | /** |
| 4851 | * Update the settings to use the Swiss pre-defined language options. |
no test coverage detected