Skip to content

Commit

Permalink
Stop treating backslashes in CSV as escape character
Browse files Browse the repository at this point in the history
  • Loading branch information
Cynser committed Oct 7, 2018
1 parent ec9dfd2 commit 903bd22
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/core/Utils.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 903bd22

Please sign in to comment.