Add `toBigInt` to the Decimal class to facilitate conversion between types. i.e ``` const toBigInt = (x: Decimal): BigInt => BigInt(x.toString()); ```
Add
toBigIntto the Decimal class to facilitate conversion between types.i.e