Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export function renderTable(cells: string[][], columns?: number) {
// The cfnDiff module has logic for terminal-width aware table
// formatting (and nice colors), let's just reuse that.
return cfnDiff.formatTable(cells, columns);
}