jakub791

Results 4 issues of jakub791

Currently break_eternity code (except the typescript version) gets transpiled to ES5 (ES2009) compatible syntax, which I assume is done to keep backwards compatibility. But as far as I know, the...

## edge cases There are 3 edge cases with number input to new Decimal/Decimal.fronNumber: `Infinity`, `-Infinity` and `NaN`. To see why, try this code: ```js new Decimal(Infinity).eq(Decimal.dInf); new Decimal(-Infinity).eq(Decimal.dNegInf); new...

bug

There are constants like `EXP_LIMIT`, `NUNBER_EXP_MIN`, `LAYER_DOWN` which I think aren't meant to be changed by people using the library (like some sort of configuration)? If that's true then it...

## What is the issue? Break eternity uses static class fields to initialize the Decimal constants like: ```ts public static readonly dZero = FC_NN(0, 0, 0); ``` FC_NN` is defined...