We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The vertical output option isn't working.
jsonexport( // example data [ { name: "Paul", xp: 26 }, { name: "Joshi", xp: 87 }, { name: "Jakob", xp: 120 } ], { rowDelimiter: ";", verticalOutput: true }, (error, csv) => { if (error) return console.error(error); console.log(csv); } );
The output is with true and false:
true
false
name;xp Paul;26 Joshi;87 Jakob;120
But should be:
name;Paul;Joshi;Jakob xp;26;87;120
The text was updated successfully, but these errors were encountered:
@xp4u1 currently the vertialOutput only works if you are sending an object to jsonexport.
verticalOutput - Boolean Set this option to false to create a horizontal output for JSON Objects, headers in the first row, values in the second.
I will keep this issue as an enhancement to add support for vertialOutput for Arrays
Sorry, something went wrong.
No branches or pull requests
The vertical output option isn't working.
The output is with
true
andfalse
:But should be:
The text was updated successfully, but these errors were encountered: