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