We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d413a7 commit d8d319bCopy full SHA for d8d319b
test/parse.js
@@ -929,6 +929,17 @@ var tests = [
929
unclosed: true
930
}
931
]
932
+ },
933
+ {
934
+ message: "should respect escape character",
935
+ fixture: "Hawaii \\35 -0",
936
+ expected: [
937
+ { type: "word", sourceIndex: 0, value: "Hawaii" },
938
+ { type: "space", sourceIndex: 6, value: " " },
939
+ { type: "word", sourceIndex: 7, value: "\\35" },
940
+ { type: "space", sourceIndex: 10, value: " " },
941
+ { type: "word", sourceIndex: 11, value: "-0" }
942
+ ]
943
944
];
945
0 commit comments