Guest User

Untitled

a guest
Dec 16th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. const csv=require('csvtojson');
  2. const csvFilePath='survey.csv'
  3.  
  4. csv().fromFile(csvFilePath)
  5. .on('json',jsonObj => {
  6. console.log(jsonObj);
  7. })
  8. .on('done', error => console.log('end'));
Add Comment
Please, Sign In to add comment