Skip to content

Commit

Permalink
fix: trim incoming lines in anylizerjs (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbender9 authored Mar 26, 2023
1 parent cf65a8d commit e30e371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/analyzerjs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ rl.on('line', function (line) {
parser.parseString(line.substring(16))
}
} else {
parser.parseString(line)
parser.parseString(line.trim())
}
})

0 comments on commit e30e371

Please sign in to comment.