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 0f8f864 commit 8bcd234Copy full SHA for 8bcd234
1 file changed
test/parse.test.ts
@@ -54,3 +54,10 @@ test("should handle really large object", () => {
54
55
assert.strictEqual(Object.keys(qs.parse(url)).length, 2000);
56
});
57
+
58
+test("should parse large numbers", () => {
59
+ assert.strictEqual(
60
+ qs.parse("id=918854443121279438895193").id,
61
+ "918854443121279438895193",
62
+ );
63
+});
0 commit comments