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