* Round the given `value` with the number of decimal places to show for the element if unfocused. * * @param {string|null} value An unformatted numeric value * @param {object} settings * @returns {*} * @private
(value, settings)
| 5758 | * @private |
| 5759 | */ |
| 5760 | static _roundFormattedValueShownOnBlur(value, settings) { |
| 5761 | return this._roundValue(value, settings, Number(settings.decimalPlacesShownOnBlur)); |
| 5762 | } |
| 5763 | |
| 5764 | /** |
| 5765 | * Round the given `value` with the number of decimal places to show for the element based on the value of isFocused. |
no test coverage detected