MCPcopy Index your code
hub / github.com/ChartGPU/ChartGPU / isFullSpanZoomRange

Function isFullSpanZoomRange

src/core/createRenderCoordinator.ts:2040–2048  ·  view source on GitHub ↗
(range: ZoomRange | null)

Source from the content-addressed store, hash-verified

2038 };
2039
2040 const isFullSpanZoomRange = (range: ZoomRange | null): boolean => {
2041 if (!range) return true;
2042 return (
2043 Number.isFinite(range.start) &&
2044 Number.isFinite(range.end) &&
2045 range.start <= 0 &&
2046 range.end >= 100
2047 );
2048 };
2049
2050 const cancelScheduledFlush = (): void => {
2051 if (flushRafId !== null) {

Callers 2

flushPendingAppendsFunction · 0.85
executeFlushFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected