We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfb2d00 commit 63b009fCopy full SHA for 63b009f
test/client/serialize.js
@@ -38,6 +38,7 @@ describe('request.serializeObject()', () => {
38
serialize({ '&name&': 'tj' }, '%26name%26=tj');
39
serialize({ hello: '`test`' }, 'hello=%60test%60');
40
serialize({ $hello: 'test' }, '$hello=test');
41
+ // eslint-disable-next-line no-dupe-keys
42
serialize({ foo: 'foo', foo: 'bar' }, 'foo=foo&foo=bar');
43
});
44
0 commit comments