* Emits an `ionInput` event.
(event?: Event)
| 545 | * Emits an `ionInput` event. |
| 546 | */ |
| 547 | private emitInputChange(event?: Event) { |
| 548 | const { value } = this; |
| 549 | |
| 550 | // Checks for both null and undefined values |
| 551 | const newValue = value == null ? value : value.toString(); |
| 552 | |
| 553 | this.ionInput.emit({ value: newValue, event }); |
| 554 | } |
| 555 | |
| 556 | private shouldClearOnEdit() { |
| 557 | const { type, clearOnEdit } = this; |
no outgoing calls
no test coverage detected