it('handles negative numbers (LE, 128)', (): void => {
    expect(
      hexToBigInt('0x00009c584c491ff2ffffffffffffffff', { isLe: true, isNegative: true })
    ).toEqual(-1000000000000000000n);
  });