()
| 24 | } |
| 25 | |
| 26 | get input(){ |
| 27 | let input = this.querySelector('input'); |
| 28 | if(!input) return Error(`No input found for the ${this.type} method`); |
| 29 | return input; |
| 30 | } |
| 31 | |
| 32 | get label(){ |
| 33 | return this.querySelector('.radio__label').textContent; |
nothing calls this directly
no outgoing calls
no test coverage detected