* Round the given `value` with the number of decimal places to show for the element if focused. * * @param {string|null} value An unformatted numeric value * @param {object} settings * @returns {*} * @private
(value, settings)
| 5746 | * @private |
| 5747 | */ |
| 5748 | static _roundFormattedValueShownOnFocus(value, settings) { |
| 5749 | return this._roundValue(value, settings, Number(settings.decimalPlacesShownOnFocus)); |
| 5750 | } |
| 5751 | |
| 5752 | /** |
| 5753 | * Round the given `value` with the number of decimal places to show for the element if unfocused. |
no test coverage detected