UNPKG

@xylabs/hex

Version:

Base functionality used throughout XY Labs TypeScript/JavaScript libraries

6 lines (4 loc) 168 B
import { type Hex, hexFromHexString } from './hex/index.ts' export function hexToBigInt(hex: Hex): bigint { return BigInt(hexFromHexString(hex, { prefix: true })) }