Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 422 Bytes

readme.md

File metadata and controls

20 lines (13 loc) · 422 Bytes

table

don't use this, use AsciiTable instead

download

just download the index.js file from github

use

const Table = require("./index.js")

let table = new Table("Commands")
table.header("command", "category", "status")
table.row("create.js", "fun", "on")
table.row("clearchannels.js", "fun", "off")

console.log(table.toString())