()
| 2060 | }; |
| 2061 | |
| 2062 | const cancelZoomResampleDebounce = (): void => { |
| 2063 | if (zoomResampleDebounceTimer !== null) { |
| 2064 | clearTimeout(zoomResampleDebounceTimer); |
| 2065 | zoomResampleDebounceTimer = null; |
| 2066 | } |
| 2067 | }; |
| 2068 | |
| 2069 | const flushPendingAppends = (): boolean => { |
| 2070 | if (pendingAppendByIndex.size === 0) return false; |
no outgoing calls
no test coverage detected