Skip to content

webpod/ingrid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@webpod/ingrid

A shell-printed tables parser

Usage

There are so many tools for printing tables in the shell, but much less to parse them back.

import { parse } from '@webpod/ingrid'

const table = `
foo bar baz
1 2 3
`
const result = parse(table.trim())
// {foo: ['1'], bar: ['2'], baz: ['3']}

To parse wmic grids, set the format option:

const table = `
foo  bar  baz
1

  2  3

a

  b  c

  d  e
`

const result = parse(table.trim(), {format: 'win'})
/**
 [
   { foo: ['1'], bar: ['2'], baz: ['3'] },
   { foo: ['a'], bar: ['b'], baz: ['c'] },
   { foo: ['a'], bar: ['d'], baz: ['e'] }
 ]
 */

License

MIT

About

A shell-printed tables parser

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published