* Returns `true` is the value is superior or equal to the `minimumValue` limit, discarding any override options * * @param {string} value * @param {object} settings * @returns {boolean} * @private
(value, settings)
| 6104 | * @private |
| 6105 | */ |
| 6106 | static _isMinimumRangeRespected(value, settings) { |
| 6107 | return AutoNumericHelper.testMinMax(AutoNumericHelper.parseStr(settings.minimumValue), this._cleanValueForRangeParse(value)) > -1; |
| 6108 | } |
| 6109 | |
| 6110 | /** |
| 6111 | * Returns `true` is the value is inferior or equal to the `maximumValue` limit, discarding any override options |
no test coverage detected