MCPcopy Index your code
hub / github.com/ColmapView/Colmapview.github.io / isOffscreenCanvas

Function isOffscreenCanvas

src/utils/canvasTypeGuards.ts:7–9  ·  view source on GitHub ↗
(canvas: TwoDimensionalCanvas)

Source from the content-addressed store, hash-verified

5>;
6
7export function isOffscreenCanvas(canvas: TwoDimensionalCanvas): canvas is OffscreenCanvas {
8 return typeof OffscreenCanvas !== 'undefined' && canvas instanceof OffscreenCanvas;
9}
10
11export function getCanvas2dContext(
12 canvas: TwoDimensionalCanvas

Callers 6

toBlobFunction · 0.90
getCanvasContextFunction · 0.90
canvasToPngUrlFunction · 0.90
canvasToBlobUrlFunction · 0.90
getCanvas2dContextFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected