(state: CaptchaState)
| 686 | const lifecycle = getActiveLifecycle(); |
| 687 | return !!lifecycle && state.generation === lifecycle.generation && !lifecycle.signal.aborted; |
| 688 | } |
| 689 | |
| 690 | function clearCaptchaTimer(state: CaptchaState): void { |
| 691 | if (state.timer) { |
| 692 | clearTimeout(state.timer); |
| 693 | state.timer = null; |
| 694 | } |
no test coverage detected