I need to work with unsigned 64 bit integers in my current project. Given that Javascript can natively handle numbers no bigger than 2^53 - 1, I have looked around at the alternatives available for handling 64 bit uints
and found two
Both libraries come with an excellent range of functions to operate on large integers. A cursory reading of JS-CUInt suggests that it has everything I require, including bit arithmetic operators, toString
, fromString
etc.
However, it bothers me that neither project has been active of late and at least one of them has dead links. Is this because native support for 64 bit units
is now so good that add-ins are not required? My search for terms such as "Chrome unsigened 64 bit int" etc have not turned up anything useful.