diff --git a/node_modules/bignumber.js/bignumber.js b/node_modules/bignumber.js/bignumber.js index a420e66..d69978d 100644 --- a/node_modules/bignumber.js/bignumber.js +++ b/node_modules/bignumber.js/bignumber.js @@ -2443,7 +2443,7 @@ if (coeffToString(t.c).slice(0, s) === (n = coeffToString(r.c)).slice(0, s)) { // The exponent of r may here be one less than the final result exponent, - // e.g 0.0009999 (e-4) --> 0.001 (e-3), so adjust s so the rounding digits + // are indexed correctly. if (r.e < e) --s; n = n.slice(s - 3, s + 1);