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