(html)
| 7311 | var decoder; |
| 7312 | |
| 7313 | function decode (html) { |
| 7314 | decoder = decoder || document.createElement('div'); |
| 7315 | decoder.innerHTML = html; |
| 7316 | return decoder.textContent |
| 7317 | } |
| 7318 | |
| 7319 | /** |
| 7320 | * Not type-checking this file because it's mostly vendor code. |
nothing calls this directly
no outgoing calls
no test coverage detected