We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4033348 + 91b7f72 commit ce82733Copy full SHA for ce82733
src/Data/Show.js
@@ -15,7 +15,7 @@ exports.showCharImpl = function (c) {
15
var code = c.charCodeAt(0);
16
if (code < 0x20 || code === 0x7F) {
17
switch (c) {
18
- case "\a": return "'\\a'";
+ case "\x07": return "'\\a'";
19
case "\b": return "'\\b'";
20
case "\f": return "'\\f'";
21
case "\n": return "'\\n'";
@@ -37,7 +37,7 @@ exports.showStringImpl = function (s) {
37
case "\"":
38
case "\\":
39
return "\\" + c;
40
- case "\a": return "\\a";
+ case "\x07": return "\\a";
41
case "\b": return "\\b";
42
case "\f": return "\\f";
43
case "\n": return "\\n";
0 commit comments