from nuon for experimental

Convert from nuon to structured data.

Signature

> from nuon

Examples

Converts nuon formatted string to table

> '{ a:1 }' | from nuon
╭───┬───╮
│ a │ 1 │
╰───┴───╯

Converts nuon formatted string to table

> '{ a:1, b: [1, 2] }' | from nuon
╭───┬───────────╮
│ a │ 1         │
│   │ ╭───┬───╮ │
│ b │ │ 01 │ │
│   │ │ 12 │ │
│   │ ╰───┴───╯ │
╰───┴───────────╯