* Table row output format * * This is enabled only when table mode is enabled * * @param {Array } dataArray * @param {Array } widthArray
(dataArray, widthArray = [])
| 476 | * @param {Array<Int>} widthArray |
| 477 | */ |
| 478 | tableRow(dataArray, widthArray = []) { |
| 479 | // Does nothing if not enabled |
| 480 | if(!this.tableOutput) { |
| 481 | return; |
| 482 | } |
| 483 | return this.standardTableRow(dataArray,widthArray); |
| 484 | } |
| 485 | |
| 486 | //-------------- |
| 487 | // Standard / Table output |
nothing calls this directly
no test coverage detected