Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
if (!column) {
column = columns.add({ name: columnName, contentWidth: 0, minContentWidth: 0 });
}
var cell = new Cell(row[columnName], column);
var cellValue = cell.value;
if (ansi.has(cellValue)) {
cellValue = ansi.remove(cellValue);
}
if (cellValue.length > column.contentWidth) column.contentWidth = cellValue.length;
var longestWord = getLongestWord(cellValue);
if (longestWord > column.minContentWidth) {
column.minContentWidth = longestWord;
}
if (!column.contentWrappable) column.contentWrappable = wrap.isWrappable(cellValue);
}
});
return columns;
if (!column) {
column = columns.add({ name: columnName, contentWidth: 0, minContentWidth: 0 })
}
let cell = new Cell(row[columnName], column)
let cellValue = cell.value
if (ansi.has(cellValue)) {
cellValue = ansi.remove(cellValue)
}
if (cellValue.length > column.contentWidth) column.contentWidth = cellValue.length
let longestWord = getLongestWord(cellValue)
if (longestWord > column.minContentWidth) {
column.minContentWidth = longestWord
}
if (!column.contentWrappable) column.contentWrappable = wrap.isWrappable(cellValue)
}
})
return columns