Leo Toneff

Results 7 comments of Leo Toneff

Alrighty. I'm gonna try to implement OfflineAudioContext myself, then. If you wouldn't mind pinging me or just referencing this issue/question if you end up implementing either one of those, that...

@sbarre I'm running it in the browser, but I ended up just building it myself so I can run the newest version. You can see it in action here: https://devina.io/json-type-generator....

I think the best approach would be to add an option in options panel that'll skip caching (and loading the cache) if an user is logged in. Something like `$skipCache...

This issue could be solved by using something like [decimal.js](https://www.npmjs.com/package/decimal.js). I'm currently using a patched version of convert-units with decimal.js [here](https://devina.io/conversion-calculator). I'd be happy to create a PR if you're...

@jessealama I tried `(1 / 3) * 3` with decimal.js using `new Decimal(1).div(3).mul(3).toNumber()`, and it returns `1`. I'm not sure about the internal workings of decimal.js, but it is [open...

@jessealama, please review the PR to see my solution. This approach is more accurate than the patch used on devina.io, as it uses decimal.js for all arithmetic operations in the...

@Taar, I want to highlight that the Decimal.js solution I suggested is fully backwards compatible, as the return type of any exported function remains unchanged; only internal changes were made....