1.0.1 • Published 12 months ago

table-as v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

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

1.0.1

12 months ago

1.0.0

12 months ago