* Table header output format * * This is enabled only when table mode is enabled * * @param {Array } headerArray containing header names * @param {Array } widthArray
(headerArray, widthArray = [])
| 460 | * @param {Array<Int>} widthArray |
| 461 | */ |
| 462 | tableHeader(headerArray, widthArray = []) { |
| 463 | // Does nothing if not enabled |
| 464 | if(!this.tableOutput) { |
| 465 | return; |
| 466 | } |
| 467 | return this.standardTableHeader(headerArray,widthArray); |
| 468 | } |
| 469 | |
| 470 | /** |
| 471 | * Table row output format |
nothing calls this directly
no test coverage detected