From b82243c42aedb6a21c59b024831cae4f6c203dcc Mon Sep 17 00:00:00 2001 From: atsiv sivat Date: Sun, 8 Mar 2026 17:20:50 +0000 Subject: [PATCH] move comment placement to the top of the line --- src/core/lib/IEEEBinary.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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