(value: string)
| 757 | } |
| 758 | |
| 759 | _removeGroupSeparators(value: string) { |
| 760 | const groupSeparator = this.groupSeparator; |
| 761 | return value.replaceAll(groupSeparator, ""); |
| 762 | } |
| 763 | |
| 764 | _isInputValueValid(typedValue: string, parsedValue: number) { |
| 765 | return !Number.isNaN(parsedValue) && !/, {2,}/.test(typedValue); |
no outgoing calls
no test coverage detected