jakub791
jakub791
This library and ExpantaNum already suffer from performance issuses, we do not need to completely freeze our games.
> As long as people still _use_ IE11, then surely it's not without value to support it. well ok, I get you. Still would be nice to have a separate...
> I'm having to undo a lot of weird shit and I'm pretty sure this repository is bullshit, just checking... That's why you don't replace your source code with the...
> The [decimal.d.ts](https://github.com/MikeMcl/decimal.js/blob/master/decimal.d.ts) file needs to be amended to support calling Decimal without using new. Actually why is it even allowed to call it as a function, without `new`? Now...
Just Why would someone use like `ee0.4`?
If we handled every possible notation like this one we'd surfer from performance issuses - parsing strings is already one of the slowest things in B_E
10^^1e308 means 1e308 raised to 1e308 1e308 times.
And regarding the docs about methods, we could use JSDoc comments so that they appear in your IDE as well.
Regarding JSDoc I meant add JSDoc comments as well (and actually for all then methods, not something like how it's now)
To add something, I like how this example from the readme: ```js x = new Decimal(123.4567); y = new Decimal("123456.7e-3"); z = new Decimal(x); x.equals(y) && y.equals(z) && x.equals(z); //...