Skip to content

Latest commit

 

History

4 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CSV Parser

Building a CSV parser from scratch with TDD.

Take CSV data and turn it into array of objects.

The data

name,age,city
Alice,30,New York
Bob,35,"Los Angeles"
"Charlie, Jr.",40,"San Francisco, CA"

The output

[
  { "name": "Alice", "age": "30", "city": "New York" },
  { "name": "Bob", "age": "35", "city": "Los Angeles" },
  { "name": "Charlie, Jr.", "age": "40", "city": "San Francisco, CA" }
]

About

CSV Parser from scratch

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages