Skip to content

Commit

Permalink
Fixed incorrect variable name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Vogelaar committed Feb 12, 2018
1 parent 09b21f1 commit 6e51694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ CV.prototype.cvjson = function(csv, config, callback) {
var header = []

var headerRow = config.headerRow || 0;
var bodyStart = config.bodyRow || config.headerRow + 1;
var bodyStart = config.bodyStart || config.headerRow + 1;

cvcsv()
.from.string(csv)
Expand Down

0 comments on commit 6e51694

Please sign in to comment.