![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | LICENSE | 8 years ago | 1.5K | 7375cab EXHIBTION: fix overflow ellipsis cutoff [كارل مبارك] |
![]() | README.md | 8 years ago | 1.6K | f12eb36 documentaiton updates [كارل مبارك] |
![]() | example.html | 8 years ago | 200 | |
![]() | example.js | 8 years ago | 107 | |
![]() | index.js | 8 years ago | 41K | |
![]() | package.json | 2 years ago | 1.3K | 7375cab EXHIBTION: fix overflow ellipsis cutoff [كارل مبارك] |
I felt compelled to put this on github and publish to npm. I haven't tested every other big integer library out there, but the few that I have tested in comparison to this one have not even come close in performance. I am aware of the bi
module on npm, however it has been modified and I wanted to publish the original without modifications. This is jsbn and jsbn2 from Tom Wu's original website above, with the modular pattern applied to prevent global leaks and to allow for use with node.js on the server side.
var BigInteger = require('jsbn');
var a = new BigInteger('91823918239182398123');
alert(a.bitLength()); // 67
returns the base-10 number as a string
returns a new BigInteger equal to the negation of bi
returns new BI of absolute value