diff options
author | Marvin Borner | 2019-10-09 19:41:50 +0200 |
---|---|---|
committer | Marvin Borner | 2019-10-09 19:41:50 +0200 |
commit | 459b97b6664abefcf8af2672f24423639bcaf2f9 (patch) | |
tree | 30589d275c08245a8df92b3877ca5af779f7b26d /generate.js | |
parent | 5e3584bad3a4ace3a82576761f14af5ff415ea44 (diff) |
Removed some useless logging
Diffstat (limited to 'generate.js')
-rw-r--r-- | generate.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/generate.js b/generate.js index 7c84ece..fa498e4 100644 --- a/generate.js +++ b/generate.js @@ -50,7 +50,6 @@ emails.forEach(email => { // DRAW! const draw = (x, y, nibble) => { - console.log(nibble); nibble.forEach((bit, index) => { ctx.fillStyle = bit === "1" ? "#000000" : "#2aabe1"; const x_pos = [1, 3].includes(index) ? x + 1 : x; @@ -60,7 +59,6 @@ emails.forEach(email => { }; arr.forEach((value, index) => { - console.log(value); const first = value.substr(0, 4).split(""); const second = value.substr(4).split(""); switch (index) { |