X-Git-Url: https://git.r.bdr.sh/rbdr/tomato-sauce/blobdiff_plain/95da493e0ec223e1c7706fc0bdc364bd3a21d999..ae6dbe43bf54581dd7012f95581d4a1b6ee245f0:/0001_BASIC.JS diff --git a/0001_BASIC.JS b/0001_BASIC.JS index 54309d9..0492ec2 100755 --- a/0001_BASIC.JS +++ b/0001_BASIC.JS @@ -227,8 +227,6 @@ const getANSIColor = function getANSIColor (mode, red, blue, green) { } else if (mode === 'ansi') { let colorOffset = Math.round((red + blue + green) * 7 / (255 * 3)); - console.log(colorOffset); - let colorNumber = 40 + colorOffset; colorCode = `\x1B[${colorNumber}m`;