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
{{ message }}
This repository has been archived by the owner on Jun 28, 2021. It is now read-only.
address.city, address.use, address.line, address.district, address.postalCode, address.state
"Springfield", "home", "493 N East St", "ST. JOHN", "39249", "MO"
"York", "home", "272 Barkwood St", "PORTER", "29912", "IL"
"La Jolla", "office", "7221 Vista Rd", "HAMILTON", "53949", "TN"
However, the actual result is one-column wide (address) and the three records are in JSON format:
address
"[{""city"":""Springfield"",""use"":""home"",""line"":[""493 N East St""],""district"":""ST. JOHN"",""postalCode"":""39249"",""state"":""MO""}]"
"[{""city"":""York"",""use"":""home"",""line"":[""272 Barkwood St""],""district"":""PORTER"",""postalCode"":""29912"",""state"":""IL""}]"
"[{""city"":""La Jolla"",""use"":""office"",""line"":[""7221 Vista Rd""],""district"":""HAMILTON"",""postalCode"":""53949"",""state"":""TN""}]"
Does csv-stringify deal with complex json arrays or is the actual result expected behavior?
Abhi Malatpure
The text was updated successfully, but these errors were encountered:
Hello,
I am trying to convert a json object to csv using csv-stringify, but the result is not what I expected. Here's the code that I am working with:
I was expecting the following result:
However, the actual result is one-column wide (address) and the three records are in JSON format:
Does csv-stringify deal with complex json arrays or is the actual result expected behavior?
Abhi Malatpure
The text was updated successfully, but these errors were encountered: