2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-05 23:53:27 +00:00

Stop treating backslashes in CSV as escape character

This commit is contained in:
Cynser
2018-10-07 22:20:43 +01:00
parent ec9dfd2918
commit 903bd22999

View File

@@ -555,8 +555,6 @@ class Utils {
if (renderNext) {
cell += b;
renderNext = false;
} else if (b === "\\") {
renderNext = true;
} else if (b === "\"" && !inString) {
inString = true;
} else if (b === "\"" && inString) {