Fixed travis second error

This commit is contained in:
Vimal-Raghubir 2018-03-25 20:17:05 -04:00
parent 5bab9b88e8
commit e8a2040dd6
3 changed files with 8 additions and 2 deletions

View file

@ -22,7 +22,7 @@ const CSVParser = {
if (detectedDelimeter !== args[0]) {
args[0] = detectedDelimeter;
}
array = CSV.parse(input, args[0], args[1]);
array = CSV.parse(input, args[0], args[1]);
} else {
array = "The passed in data is not a csv string. Please pass in a csv string.";
}
@ -42,7 +42,7 @@ const CSVParser = {
string = "The passed in data is not a string that can be converted to a CSV.";
}
return string;
}
}
};
export default CSVParser;