Skip to content

Instantly share code, notes, and snippets.

@jcrugzz
Last active March 29, 2016 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcrugzz/639690883721a8b18e65e007207f22c1 to your computer and use it in GitHub Desktop.
Save jcrugzz/639690883721a8b18e65e007207f22c1 to your computer and use it in GitHub Desktop.
var fs = require('fs');
var whateverCsv = fs.readFileSync('whatever.csv');
var otherCsv = fs.readFileSync('other.csv');
var lines = content.split('\n');
var columnNamesArray = lines[0].split(',');
var firstColumnName = columnNamesArray[0];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment