Converting a customer export
A spreadsheet export contains name, age, and city columns. The converter maps the header row to keys and produces objects for each data row. Note that "30" stays a string — CSV carries no type information, and the converter never guesses.
| Input | Value |
|---|---|
| csv | name,age,city
Alice,30,Paris
Bob,25,"New York" |
| Result | [{"name":"Alice","age":"30","city":"Paris"},{"name":"Bob","age":"25","city":"New York"}] |