]> git.r.bdr.sh - rbdr/tomato-sauce/commitdiff
Use let instead of const for circle
authorRuben Beltran del Rio <redacted>
Sun, 2 Jul 2023 11:39:37 +0000 (11:39 +0000)
committerRuben Beltran del Rio <redacted>
Sun, 2 Jul 2023 11:39:37 +0000 (11:39 +0000)
lib/screens/circle.js

index 720e250ddd0e414ce4a9234e0681ca70a7dd0098..2c9a0bd85e86d0025fc2316580db39bdcdc3df3f 100644 (file)
@@ -26,7 +26,7 @@ module.exports = function (modulation, width, height, renderer) {
       const y = Math.round(centerY + Math.cos(angle) * i);
 
       if (x <= width && x > 0 && y <= height && y > 0) {
-        const position = `\x1B[${y};${x}H`; // Move cursor to y,x (CSI y;x H)
+        let position = `\x1B[${y};${x}H`; // Move cursor to y,x (CSI y;x H)
         response += `${position}${renderer(red, blue, green)} `;
       }
     }