()
| 58 | let timeout: ReturnType<typeof setTimeout> | undefined; |
| 59 | |
| 60 | const stopTimer = () => { |
| 61 | globalThis.clearTimeout(timeout); |
| 62 | timeout = undefined; |
| 63 | }; |
| 64 | |
| 65 | const reportViewable = (met: ViewabilityCriteria) => { |
| 66 | stopTimer(); |
no outgoing calls
no test coverage detected