* Strip all the unwanted non-number characters. * However, it does not reorder the localized negative sign. * * @param {string} s * @param {object} settings * @param {boolean} stripZeros If set to `false`, then the leading zero(s) are not stripped, otherwise if set to `true`
(s, settings, stripZeros, isFocused)
| 4968 | * @private |
| 4969 | */ |
| 4970 | static _stripAllNonNumberCharacters(s, settings, stripZeros, isFocused) { |
| 4971 | return this._stripAllNonNumberCharactersExceptCustomDecimalChar(s, settings, stripZeros, isFocused).replace(settings.decimalCharacter, '.'); |
| 4972 | } |
| 4973 | |
| 4974 | /** |
| 4975 | * Strip all unwanted non-number characters except the custom decimal character. |
no test coverage detected