mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-08 23:35:01 -04:00
Fixed travis second error
This commit is contained in:
parent
5bab9b88e8
commit
e8a2040dd6
3 changed files with 8 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue