(text: string)
| 10 | import {htmlTextMapper} from '../html-text-mapper'; |
| 11 | |
| 12 | function textToHtml(text: string) { |
| 13 | const div = document.createElement('div'); |
| 14 | div.textContent = text; |
| 15 | return div.innerHTML; |
| 16 | } |
| 17 | |
| 18 | function htmlToText(html: string) { |
| 19 | const div = document.createElement('div'); |
no outgoing calls
no test coverage detected