Skip to content

Instantly share code, notes, and snippets.

@goccy
Created December 24, 2012 11:03
Show Gist options
  • Save goccy/4368849 to your computer and use it in GitHub Desktop.
Save goccy/4368849 to your computer and use it in GitHub Desktop.
function parseRow(columns, parser) {
var row = {};
for (var i = 0; i < columns.length; i++) {
row[columns[i].name] = parser.readColumnValue();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment