MCPcopy Create free account
hub / github.com/PicoCreator/smol-dev-js / tableRow

Method tableRow

src/cli/OutputHandler.js:478–484  ·  view source on GitHub ↗

* Table row output format * * This is enabled only when table mode is enabled * * @param {Array } dataArray * @param {Array } widthArray

(dataArray, widthArray = [])

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

standardTableRowMethod · 0.95

Tested by

no test coverage detected