MCPcopy Create free account
hub / github.com/ColmapView/Colmapview.github.io / parseColmapBigIntToken

Function parseColmapBigIntToken

src/parsers/colmapTextTokens.ts:40–43  ·  view source on GitHub ↗
(token: string)

Source from the content-addressed store, hash-verified

38}
39
40export function parseColmapBigIntToken(token: string): bigint | null {
41 const trimmedToken = token.trim();
42 return COLMAP_BIGINT_TOKEN_PATTERN.test(trimmedToken) ? BigInt(trimmedToken) : null;
43}

Callers 3

parseImagesTextFunction · 0.90
parsePoints3DTextFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected