Convert CSV data to a JSON array of objects. The first line is used as headers for the object keys.
Example
name,age + Alice,30 → [{"name":"Alice","age":"30"}]
id,value + 1,hello → [{"id":"1","value":"hello"}]
Convert CSV data to a JSON array of objects. The first line is used as headers for the object keys.
name,age + Alice,30 → [{"name":"Alice","age":"30"}]
id,value + 1,hello → [{"id":"1","value":"hello"}]