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
csv.writeToString( [ {a: "a1", b: "b1"}, {a: "a2", b: "b2"} ], { headers: true }, function (err, data) { console.log('err:', err, 'data: |' + data + '|'); } );
gives
err: null data: |a,b a1,b1 a2,b2|
but
csv.writeToString( [ {a: "a1", b: "b1"}, {a: "a2", b: "b2"} ], { headers: false }, function (err, data) { console.log('err:', err, 'data: |' + data + '|'); } );
err: null data: | |
The text was updated successfully, but these errors were encountered:
# v0.5.2
d958ddd
* Fixed issue with `writeToString` and `writeToPath` examples C2FO#64 * Fixed issue with creating a csv without headers C2FO#63
This issue is fixed in v0.5.2 thanks for finding this
-Doug
Sorry, something went wrong.
Holy crap! Fixed, unit tested, documented and deployed in less than 24 hours! Nice work, dude!
No branches or pull requests
gives
but
gives
The text was updated successfully, but these errors were encountered: