* Converts the math node into a string, similar to innerText.
()
| 246 | * Converts the math node into a string, similar to innerText. |
| 247 | */ |
| 248 | toText(): string { |
| 249 | if (this.character) { |
| 250 | return this.character; |
| 251 | } else { |
| 252 | return " "; |
| 253 | } |
| 254 | } |
| 255 | } |
nothing calls this directly
no outgoing calls
no test coverage detected