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

Method tableHeader

src/cli/OutputHandler.js:462–468  ·  view source on GitHub ↗

* Table header output format * * This is enabled only when table mode is enabled * * @param {Array } headerArray containing header names * @param {Array } widthArray

(headerArray, widthArray = [])

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

standardTableHeaderMethod · 0.95

Tested by

no test coverage detected