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
one simple solution would be to include the prefix here as well
qs/lib/stringify.js
Lines 123 to 129 in 981ce09
to this:
if (isNonNullishPrimitive(obj) || utils.isBuffer(obj)) { if (encoder) { var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder, charset, 'key', format, undefined); return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder, charset, 'value', format, prefix))]; } return [formatter(prefix) + '=' + formatter(String(obj))]; }
without introducing any breaking changes to the library
Originally posted by @vanenshi in #491 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
qs/lib/stringify.js
Lines 123 to 129 in 981ce09
to this:
without introducing any breaking changes to the library
Originally posted by @vanenshi in #491 (comment)
The text was updated successfully, but these errors were encountered: