(html)
| 97 | } |
| 98 | |
| 99 | export function parseHTML(html) { |
| 100 | const htmlDoc = new DOMParser().parseFromString(html, 'text/html'); |
| 101 | return htmlDoc.body.childNodes; |
| 102 | } |
| 103 | |
| 104 | function decodeQuotedPrint(armored) { |
| 105 | return armored |
no outgoing calls
no test coverage detected