table-as
v1.0.1
Published
The only table generator you'll need for AssemblyScript
Downloads
1,640
Maintainers
Readme
Installation
npm install table-as
Usage
import { createTable } from "table-as";
const table = createTable([
["0A","0B","0C"],
["1A","1B","1C"],
["2A","2B","2C"]
]);
console.log(table);
// ┌────────┬────────┬────────┐
// │ 0A │ 0B │ 0C │
// ├────────┼────────┼────────┤
// │ 1A │ 1B │ 1C │
// ├────────┼────────┼────────┤
// │ 2A │ 2B │ 2C │
// └────────┴────────┴────────┘
Issues
Please submit an issue to https://github.com/JairusSW/as-table/issues if you find anything wrong with this library