We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is the following expectation correct ?
test('stringify URL without sorting params', t => { t.deepEqual(queryString.stringifyUrl({ url: 'https://foo.bar?C=3&A=1', query: {D: 4, B: 2}}, {sort: false}), 'https://foo.bar?C=3&A=1&D=4&B=2'); });
Currently the above test will fail because the query parameters that are already present in the URL get sorted, giving
'https://foo.bar?A=1&C=3&D=4&B=2'
The text was updated successfully, but these errors were encountered:
Yeah, that looks like a bug.
Sorry, something went wrong.
sort
Successfully merging a pull request may close this issue.
Is the following expectation correct ?
Currently the above test will fail because the query parameters that are already present in the URL get sorted, giving
The text was updated successfully, but these errors were encountered: