@locational/ascii-tables
v0.0.2
Published
Simple utility to parse (and generate) ascii tables into objects, mainly for simpler testing.
Downloads
5
Readme
ascii-tables
Simple utility to parse (and generate) ascii tables into objects, mainly for simpler testing.
Parse
const input = `
| name | age |
| sihle | 100 |
| jonathan | 99 |
`
const expected = [{age: 100, name: "sihle"}, {age: 99, name: "jonathan"}]