Skip to content
New issue

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

Request: Please update qs to 6.7.0 #3146

Closed
KaiRoesner opened this issue Apr 3, 2019 · 1 comment
Closed

Request: Please update qs to 6.7.0 #3146

KaiRoesner opened this issue Apr 3, 2019 · 1 comment
Labels

Comments

@KaiRoesner
Copy link

Summary

Request: Please update qs to 6.7.0

Expected Behavior

qs 6.7.0 supports arrayFormat: 'comma' as an option to stringify an array parameter to a comma separated list:

const q = qs.stringify({ a: ['x', 'y'] }, { arrayFormat: 'comma' })  // => q === 'a=x,y'

Current Behavior

Currently, qs 6.5.2 is used and arrayFormat: 'comma' is ignored, i.e.:

const q = qs.stringify({ a: ['x', 'y'] }, { arrayFormat: 'comma' })  // => q === 'a[0]=x&a[1]=y'

Possible Solution

update qs to 6.7.0

@stale
Copy link

stale bot commented Apr 2, 2020

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale label Apr 2, 2020
@stale stale bot closed this as completed Apr 9, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant