* Update the settings to use the North American 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)
| 4829 | * @returns {AutoNumeric} |
| 4830 | */ |
| 4831 | northAmerican(optionOverride = null) { |
| 4832 | this._updatePredefinedOptions(AutoNumeric.getPredefinedOptions().NorthAmerican, optionOverride); |
| 4833 | |
| 4834 | return this; |
| 4835 | } |
| 4836 | |
| 4837 | /** |
| 4838 | * Update the settings to use the British pre-defined language options. |
no test coverage detected