You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@pranaymistry maybe your concern is you are seeing JavaScript array/objects and not JSON formatted array/objects? You will see the JSON format if modify your: console.log(jsonObj) to: console.log(JSON.stringify(jsonObj))
When I use the sample nested CSV provided and I try to run it in VS Code I don't get the desired JSON output. Please help resolve this issue ASAP.
My Test CSV
JS Code
const csvFilePath='test.csv' const csvtojsonV2=require("csvtojson/v2"); csvtojsonV2() .fromFile(csvFilePath) .then((jsonObj)=>{ console.log(jsonObj); /** * [ * {a:"1", b:"2", c:"3"}, * {a:"4", b:"5". c:"6"} * ] */ })
VS Code Output
Full VS Code JS Code with output
Even on the MAC Terminal I get the same [Array] for the nested JSON object and not the actual JSON
The text was updated successfully, but these errors were encountered: