0.0.2 • Published 6 years ago

@locational/ascii-tables v0.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
6 years ago

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"}]
0.0.2

6 years ago

0.0.1

6 years ago