Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
row.forEach(function (cell, column) {
if (column.noWrap) {
line.push(cell.value.split(/\r\n?|\n/));
} else {
line.push(wrap.lines(cell.value, {
width: column.wrappedContentWidth,
break: column.break,
noTrim: _this2.options.noTrim
}));
}
});
return line;
row.forEach((cell, column) => {
if (column.noWrap) {
line.push(cell.value.split(/\r\n?|\n/))
} else {
line.push(wrap.lines(cell.value, {
width: column.wrappedContentWidth,
break: column.break,
noTrim: this.options.noTrim
}))
}
})
return line
row.forEach(function (cell, column) {
if (column.noWrap) {
line.push(cell.value.split(/\r\n?|\n/));
} else {
line.push(wrap.lines(cell.value, {
width: column.wrappedContentWidth,
break: column.break,
noTrim: _this2.options.noTrim
}));
}
});
return line;
row.forEach((cell, column) => {
if (column.noWrap) {
line.push(cell.value.split(/\r\n?|\n/))
} else {
line.push(wrap.lines(cell.value, {
width: column.wrappedContentWidth,
break: column.break,
noTrim: this.options.noTrim
}))
}
})
return line
row.forEach((cell, column) => {
if (column.nowrap) {
line.push(cell.value.split(/\r\n?|\n/))
} else {
line.push(wrap.lines(cell.value, {
width: column.wrappedContentWidth,
ignore: ansi.regexp,
break: column.break
}))
}
})
return line
function getLongestWord (line) {
const words = wrap.getChunks(line)
return words.reduce((max, word) => {
return Math.max(word.length, max)
}, 0)
}
function getLongestWord(line) {
var words = wrap.getChunks(line);
return words.reduce(function (max, word) {
return Math.max(word.length, max);
}, 0);
}
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