* Helper function that prepares the value string for the min/max test * * @param {string} value * @returns {{}} * @private
(value)
| 6088 | * @private |
| 6089 | */ |
| 6090 | static _cleanValueForRangeParse(value) { |
| 6091 | if (!AutoNumericHelper.isNull(value)) { |
| 6092 | value = value.toString().replace(',', '.'); |
| 6093 | } |
| 6094 | |
| 6095 | return AutoNumericHelper.parseStr(value); |
| 6096 | } |
| 6097 | |
| 6098 | /** |
| 6099 | * Returns `true` is the value is superior or equal to the `minimumValue` limit, discarding any override options |
no test coverage detected