diff --git a/src/core/operations/ToTable.mjs b/src/core/operations/ToTable.mjs index d723d806..89e4668d 100644 --- a/src/core/operations/ToTable.mjs +++ b/src/core/operations/ToTable.mjs @@ -140,7 +140,6 @@ class ToTable extends Operation { rowOutput += " " + " ".repeat(longestCells[rowCount]) + " " + verticalBorder; rowCount += 1; } - rowOutput += "\n"; return rowOutput; } @@ -194,7 +193,7 @@ class ToTable extends Operation { * @param {string} cellType */ function outputRow(row, cellType) { - let rowCount = 0 + let rowCount = 0; let output = ""; row.forEach(function(cell) { output += "<" + cellType + ">" + cell + "";