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 3e6f89b commit bd57316Copy full SHA for bd57316
1 file changed
test/stringify.test.ts
@@ -27,6 +27,10 @@ test("should handle numbers", () => {
27
);
28
});
29
30
+test("should handle mixed ascii and non-ascii", () => {
31
+ assert.deepEqual(qs.stringify({ name: "Jöhn Doe" }), "name=J%C3%B6hn%20Doe");
32
+});
33
+
34
test("should handle BigInt", () => {
35
assert.deepEqual(
36
qs.stringify({ age: BigInt(55), name: "John" }),
0 commit comments