({
lastRenderedStartIndex,
lastRenderedStopIndex,
startIndex,
stopIndex,
})
| 158 | * Determines if the specified start/stop range is visible based on the most recently rendered range. |
| 159 | */ |
| 160 | export function isRangeVisible({ |
| 161 | lastRenderedStartIndex, |
| 162 | lastRenderedStopIndex, |
| 163 | startIndex, |
| 164 | stopIndex, |
| 165 | }) { |
| 166 | return !( |
| 167 | startIndex > lastRenderedStopIndex || stopIndex < lastRenderedStartIndex |
| 168 | ); |
| 169 | } |
| 170 | |
| 171 | /** |
| 172 | * Returns all of the ranges within a larger range that contain unloaded rows. |
no outgoing calls
no test coverage detected
searching dependent graphs…