(str)
| 7 | } |
| 8 | |
| 9 | export function escapeHtml(str) { |
| 10 | const div = document.createElement('div'); |
| 11 | div.textContent = str; |
| 12 | return div.innerHTML; |
| 13 | } |
| 14 | |
| 15 | export async function copyToClipboard(text) { |
| 16 | try { |
no outgoing calls
no test coverage detected