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 ef9be7f commit 0f8f864Copy full SHA for 0f8f864
1 file changed
test/parse.test.ts
@@ -41,6 +41,7 @@ test("should accept pairs with missing values", () => {
41
});
42
43
test("should decode key", () => {
44
+ assert.deepEqual(qs.parse("invalid%key=hello"), { "invalid%key": "hello" });
45
assert.deepEqual(qs.parse("full%20name=Yagiz"), { "full name": "Yagiz" });
46
47
0 commit comments