mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-10 00:05:11 -04:00
Linting Modifications.
This commit is contained in:
parent
7e9c6ec2aa
commit
228a8ba55c
1 changed files with 1 additions and 2 deletions
|
@ -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 = "<tr>";
|
||||
row.forEach(function(cell) {
|
||||
output += "<" + cellType + ">" + cell + "</" + cellType + ">";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue