()
| 41 | } |
| 42 | |
| 43 | get textWrap(): boolean { |
| 44 | return this.style.whiteSpace === 'normal'; |
| 45 | } |
| 46 | set textWrap(value: boolean) { |
| 47 | if (typeof value === 'string') { |
| 48 | value = booleanConverter(value); |
nothing calls this directly
no test coverage detected