From f7a03a6c336fdbb73bf0f1511990ea2d3fa890ea Mon Sep 17 00:00:00 2001 From: Samuel Lord <9904667+NodeMixaholic@users.noreply.github.com> Date: Sat, 27 Jan 2024 15:47:09 -0600 Subject: [PATCH] Update index.js --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index d5c3e64..5ccfbc3 100644 --- a/index.js +++ b/index.js @@ -8,6 +8,6 @@ function fastInverseSqrt(number) { y = Math.abs(y); y = (y / 1000000000000000000); y = Math.round(y * 100) / 100; - y = y - .1; + y = y - ((Math.floor(y) / 10) / 2); return y; }