- merged pull request c5f32fa from vote539
- fixed issue #3: invalid remainder in x.div(y) where y > x -- thanks @bltpanda
- merged pull request c6d1c41 from tec27
- updated package.json file
- fixed bug in uint32.div()
- minor tweaks to shiftr()
- #div() always sets the remainder
- fix for uint64.fromString(36) substring param
- faster uint32.fromString()
- fix for uint64.div()
- adjusted toString() to handle max radix of 36
- added minified versions in build/
- updated README
- added support for unsigned 64 bits integers
- shiftLeft() and shiftRight() fixes when n > 16
- not() fix
- adjusted fromString() slice from 8 to 6 to avoid radix overflow
- 1.div() fix
- toString() fix for uint < radix
- toString() no longer alters the unsigned integer
- fixed shiftLeft() not applying mask properly, affecting toString() and div()
- added examples
- Initial release (only supports 32 bits uint)