Max Hogan

Results 4 issues of Max Hogan

It would be nice if the math used was high precision. I have run into issues with this. You may want to use [big.js](https://github.com/MikeMcl/big.js)

When you call ```javascript bases.fromAlphabet(127, '0123456789abcdef'); ``` returns `0`, but ```javascript bases.fromAlphabet("127", '0123456789abcdef') ``` returns `295` (correct). The fix is to call `str = str.toString();` in the first line of...

https://github.com/aseemk/bases.js/issues/9

Download this repo, `cd` there, and run `node`. Type this in: ```javascript var shoco = require("./shoco.js");shoco.decompress(shoco.compress("Hello, World!")); ``` I get this error: ```javascript TypeError: shoco.compress is not a function at...