1.0.4
- Dropping support for Node 4
1.0.3
- Bumping version for NPM
1.0.2
-
Fixing clerical error in README
-
Bumping node module versions
-
Adding API docs
-
Removing e2e tests since they're not complete
-
Removing
asyncawait
plugin -
Disabling
dot-location
rule in ESLint -
Setting
ecmaVersion
to 2017 in ESLint -
using real
async/await
inutils.js
now -
Exposing API publicly
const gencsv = require('csv-generator'); gencsv('foo.csv', ['name'], { rows: 100, chunks: 10, silent: true }).then( res => { console.log(res); }, e => { console.error(e); } );