* Round the given `value` with the number of decimal places to keep for the raw value. * * @param {string|null} value An unformatted numeric value * @param {object} settings * @returns {*} * @private
(value, settings)
| 5734 | * @private |
| 5735 | */ |
| 5736 | static _roundRawValue(value, settings) { |
| 5737 | return this._roundValue(value, settings, settings.decimalPlacesRawValue); |
| 5738 | } |
| 5739 | |
| 5740 | /** |
| 5741 | * Round the given `value` with the number of decimal places to show for the element if focused. |
no test coverage detected