From: Ben Beltran Date: Mon, 11 Apr 2016 07:11:06 +0000 (-0500) Subject: Remvoes unnecessary log X-Git-Tag: 1.0.0~1^2~1 X-Git-Url: https://git.r.bdr.sh/rbdr/tomato-sauce/commitdiff_plain/ae6dbe43bf54581dd7012f95581d4a1b6ee245f0?hp=95da493e0ec223e1c7706fc0bdc364bd3a21d999 Remvoes unnecessary log --- 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`;