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 b893058 commit db09d86Copy full SHA for db09d86
test/stringify.test.ts
@@ -48,3 +48,7 @@ test("should omit objects", () => {
48
test("should omit non-object inputs", () => {
49
assert.deepEqual(qs.stringify("hello" as any), "");
50
});
51
+
52
+test("should handle multi-byte characters", () => {
53
+ assert.deepEqual(qs.stringify({ multiByte: "𝌆" }), "multiByte=%F0%9D%8C%86");
54
+});
0 commit comments