diff --git a/src/core/lib/IEEEBinary.mjs b/src/core/lib/IEEEBinary.mjs index d9067cbd..4f5096ce 100644 --- a/src/core/lib/IEEEBinary.mjs +++ b/src/core/lib/IEEEBinary.mjs @@ -284,7 +284,8 @@ export function ToIEEE754Float64(input) { const eD = BigInt(D.toString(2).length - 1); let e2 = eN - eD; - const GRS = 3n; // Guard, Round, Sticky bits + // Guard, Round, Sticky bits + const GRS = 3n; const totalBits = PRECISION + GRS; // Approximate bit-length of normalised N/D: e2 + 1