Took out logging call. My bad.

This commit is contained in:
bwhitn 2017-08-27 20:53:53 -04:00
parent 9c5f06101e
commit aa5939c051
1 changed files with 0 additions and 1 deletions

View File

@ -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]);
},
};