(table: MarkdownTable)
| 250 | // --------------------------------------------------------------------------- |
| 251 | |
| 252 | function clone(table: MarkdownTable): MarkdownTable { |
| 253 | return { |
| 254 | headers: [...table.headers], |
| 255 | rows: table.rows.map((r) => [...r]), |
| 256 | aligns: [...table.aligns] |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | export function columnCount(table: MarkdownTable): number { |
| 261 | return table.headers.length |
no outgoing calls
no test coverage detected