From aa5939c0511c61818c96c41e99fb4f6c92c6383f Mon Sep 17 00:00:00 2001 From: bwhitn Date: Sun, 27 Aug 2017 20:53:53 -0400 Subject: [PATCH] Took out logging call. My bad. --- src/core/operations/VBE.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/operations/VBE.js b/src/core/operations/VBE.js index fa28a9c6..59432879 100644 --- a/src/core/operations/VBE.js +++ b/src/core/operations/VBE.js @@ -248,7 +248,6 @@ const VBE = { runDecodeVBE: function (data, args) { let matcher = /#@~\^......==(.+)......==\^#~@/; let encodedData = matcher.exec(data); - console.log(encodedData[1]); return VBE.decode(encodedData[1]); }, };