Skip to content

Instantly share code, notes, and snippets.

@arliber
Last active August 4, 2018 08:54
Show Gist options
  • Save arliber/097ef3dee627f4159b4307f67c9f66e6 to your computer and use it in GitHub Desktop.
Save arliber/097ef3dee627f4159b4307f67c9f66e6 to your computer and use it in GitHub Desktop.
function exportCSV(profiles) {
return new Promise((resolve, reject) => {
const fields = [
'name',
'profileUrl'
];
let csv = json2csv({ data: profiles, fields });
fs.writeFile('profiles.csv', csv, function(err) {
if (err) {
reject()
}
resolve();
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment