From 903bd22999089ca0103b3b8ff3a55c1353c14c68 Mon Sep 17 00:00:00 2001 From: Cynser <42423063+Cynser@users.noreply.github.com> Date: Sun, 7 Oct 2018 22:20:43 +0100 Subject: [PATCH] Stop treating backslashes in CSV as escape character --- src/core/Utils.mjs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/Utils.mjs b/src/core/Utils.mjs index ab3d4281..26debee3 100755 --- a/src/core/Utils.mjs +++ b/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) {