()
| 8913 | lastPingSent = Date.now(); |
| 8914 | sendJSON({ type: "ping" }); |
| 8915 | } |
| 8916 | }, PING_INTERVAL_MS); |
| 8917 | } |
| 8918 | function stopPing() { |
| 8919 | if (pingTimer) clearInterval(pingTimer); |
| 8920 | pingTimer = null; |
| 8921 | latencyEl.textContent = "--"; |
| 8922 | } |
no outgoing calls
no test coverage detected