UNPKG

lamed_table

Version:
20 lines (18 loc) 1.68 kB
## Function Descriptions | Function |Description | | ---- | ---- | [**checkTable**](functions/checkTable.md)(table, showTrace = false, showError = false) |Show tracing information about the table object | [**colsAddColumn**](functions/colsAddColumn.md)(table, colName, value) |Add a column to a table object | [**colsAddColumns**](functions/colsAddColumns.md)(table, colNames, defaultValue = '') |Add columns to a table object | [**colsNumber**](functions/colsNumber.md)(table, colNameOrNumber, throwError = true) |Returns the col number from the name | [**colsSet**](functions/colsSet.md)(table, colNames) |Set the columns to the table | [**create**](functions/create.md)(columns, tableName = 'tableName') |Create a table object with the specified columns | [**createEmpty**](functions/createEmpty.md)(tableName = 'tableName') |Create an empty table object | [**rowAdd**](functions/rowAdd.md)(table, items) |Add row to the table | [**rowFind**](functions/rowFind.md)(table, colName, value, findFirst = true) |Find a string in a specific column | [**rowInclude**](functions/rowInclude.md)(table, colName, value, findFirst = true) |Find if a string is included in a specific column | [**rowSet**](functions/rowSet.md)(table, row, colName, item) |Put an item into a row at heading location | [**sortAscending**](functions/sortAscending.md)(table, colNameOrNumber) |Sort table ascending on the specified column | [**table2MD**](functions/table2MD.md)(table, boldColumn = -1, heading = '') |Convert a array table to markdown table | [**totalCols**](functions/totalCols.md)(table) |Total columns in the table | [**totalRows**](functions/totalRows.md)(table) |Total rows in the table |