()
| 559 | } |
| 560 | |
| 561 | private getValue(): string { |
| 562 | return typeof this.value === 'number' ? this.value.toString() : (this.value || '').toString(); |
| 563 | } |
| 564 | |
| 565 | private onInput = (ev: InputEvent | Event) => { |
| 566 | const input = ev.target as HTMLInputElement | null; |
no outgoing calls
no test coverage detected