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