Parcourir la source

Stop treating backslashes in CSV as escape character

Cynser il y a 6 ans
Parent
commit
903bd22999
1 fichiers modifiés avec 0 ajouts et 2 suppressions
  1. 0 2
      src/core/Utils.mjs

+ 0 - 2
src/core/Utils.mjs

@@ -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) {