* Returns `true` if the given value is within the `minimumValue` and `maximumValue` limits, while using the override options set with `overrideMinMaxLimits`, `false` otherwise * * @param {string} value * @param {object} settings * @returns {boolean} * @private
(value, settings)
| 6075 | * @private |
| 6076 | */ |
| 6077 | static _isWithinRangeWithOverrideOption(value, settings) { |
| 6078 | const [minTest, maxTest] = this._checkIfInRangeWithOverrideOption(value, settings); |
| 6079 | |
| 6080 | return minTest && maxTest; |
| 6081 | } |
| 6082 | |
| 6083 | /** |
| 6084 | * Helper function that prepares the value string for the min/max test |
no test coverage detected