()
| 55 | if (!gbEnabled) return |
| 56 | |
| 57 | function clearTimer(): void { |
| 58 | if (timerRef.current !== null) { |
| 59 | clearTimeout(timerRef.current) |
| 60 | timerRef.current = null |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | function abortInFlight(): void { |
| 65 | abortRef.current?.abort() |
no outgoing calls
no test coverage detected