From 6e51694d7ef30e4bdec12bea0f88703aaf56c9b4 Mon Sep 17 00:00:00 2001 From: Thomas Vogelaar Date: Mon, 12 Feb 2018 12:08:48 +1000 Subject: [PATCH] Fixed incorrect variable name. --- libs/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/index.js b/libs/index.js index 330a1c5..d6ff8bd 100644 --- a/libs/index.js +++ b/libs/index.js @@ -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)