diff options
| -rwxr-xr-x | 0001_BASIC.JS | 2 |
1 files changed, 0 insertions, 2 deletions
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`; |