(sent: boolean)
| 68 | } |
| 69 | |
| 70 | function setTokenSentToServer(sent: boolean) { |
| 71 | window.localStorage.setItem('sentToServer', sent ? '1' : '0'); |
| 72 | } |
| 73 | |
| 74 | function showHideDiv(divId: string, show: boolean) { |
| 75 | const div = document.querySelector('#' + divId)! as HTMLDivElement; |
no outgoing calls
no test coverage detected