javascript-biginteger icon indicating copy to clipboard operation
javascript-biginteger copied to clipboard

A big integer library for JavaScript

Results 3 javascript-biginteger issues
Sort by recently updated
recently updated
newest added

Could you please provide a small example how to use this module? For example in a node.js environment?

documentation

It would be great if BigInteger had formatting function. For example, using D3's formatting: ``` javascript var myBigInt = BigInteger("1234567890"); console.log(myBigInt.format(",.02f")); // "1,234,567,890.00" console.log(myBigInt.toString(",.02f")); // "1,234,567,890.00" ``` Thank you

Make it more clear in the documentation that BigInteger only takes one argument (when called as a normal function), not value and a radix.

documentation