Removed unnessesary code

Removed the console.log() from char(hex)
This commit is contained in:
James Taylor 2017-03-24 12:55:45 +00:00 committed by GitHub
parent 53661c372c
commit 46455bb493

View file

@ -82,7 +82,6 @@ var ByteRepr = {
var data = input.replace(/cha?r\((\d{1,3})\)/ig,
function(match, p1) {
if (p1) {
console.log(p1);
return Utils.byteArrayToChars([parseInt(p1)]);
};
});