()
| 672 | * a single Date.now() call. |
| 673 | */ |
| 674 | export function flushInteractionTime(): void { |
| 675 | if (interactionTimeDirty) { |
| 676 | flushInteractionTime_inner() |
| 677 | } |
| 678 | } |
| 679 | |
| 680 | function flushInteractionTime_inner(): void { |
| 681 | STATE.lastInteractionTime = Date.now() |
nothing calls this directly
no test coverage detected