Stop treating backslashes in CSV as escape character
This commit is contained in:
parent
ec9dfd2918
commit
903bd22999
@ -555,8 +555,6 @@ class Utils {
|
|||||||
if (renderNext) {
|
if (renderNext) {
|
||||||
cell += b;
|
cell += b;
|
||||||
renderNext = false;
|
renderNext = false;
|
||||||
} else if (b === "\\") {
|
|
||||||
renderNext = true;
|
|
||||||
} else if (b === "\"" && !inString) {
|
} else if (b === "\"" && !inString) {
|
||||||
inString = true;
|
inString = true;
|
||||||
} else if (b === "\"" && inString) {
|
} else if (b === "\"" && inString) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user