()
| 83 | } |
| 84 | |
| 85 | function showCopiedStatus() { |
| 86 | copiedBadge.style.display = 'inline-block'; |
| 87 | setTimeout(() => { |
| 88 | copiedBadge.style.display = 'none'; |
| 89 | }, 3000); |
| 90 | } |
| 91 | |
| 92 | function isHistoryEnabled() { |
| 93 | const enabled = localStorage.getItem(HISTORY_ENABLED_KEY); |
no outgoing calls
no test coverage detected