diff options
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/jsgen.nim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/jsgen.nim b/compiler/jsgen.nim index abe86af7b..2da7db900 100644 --- a/compiler/jsgen.nim +++ b/compiler/jsgen.nim @@ -211,7 +211,6 @@ proc escapeJSString(s: string): string = of '\e': result.add("\\e") of '\v': result.add("\\v") of '\\': result.add("\\\\") - of '\'': result.add("\\'") of '\"': result.add("\\\"") else: add(result, c) result.add("\"") |