1
0
mirror of synced 2025-02-01 12:08:03 +01:00

Took out logging call. My bad.

This commit is contained in:
bwhitn 2017-08-27 20:53:53 -04:00
parent 9c5f06101e
commit aa5939c051

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