summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2016-04-11 02:11:06 -0500
committerBen Beltran <ben@nsovocal.com>2016-04-11 02:11:06 -0500
commitae6dbe43bf54581dd7012f95581d4a1b6ee245f0 (patch)
treed92e809bc0a94c64ddff0499dd5f65c9f16ea06c
parent95da493e0ec223e1c7706fc0bdc364bd3a21d999 (diff)
Remvoes unnecessary log
-rwxr-xr-x0001_BASIC.JS2
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`;