import { BigNumber } from "https://deno.land/x/web3@v0.11.1/types/bignumber.d.ts";
As toString
, but does not accept a base argument and includes the minus sign for negative
zero.
``ts x = new BigNumber('-0') x.toString() // '0' x.valueOf() // '-0' y = new BigNumber('1.777e+457') y.valueOf() // '1.777e+457'