-
-
Notifications
You must be signed in to change notification settings - Fork 453
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
Is there a way to get the values always inside arrays, even for single values? #228
Comments
There's currently no way to do this. We need a way to make it unambiguous. Maybe introduce some kind of schema functionality, where you can define the type of some or all keys. |
Or in your case, you could use a less ambiguous format like |
One way to work around this for now could be like this. @cbdeveloper
or
|
If you're still wanting to use the condensed format of |
I believe #385 implements a solution to this with the added types functionality. Shall we close this out @sindresorhus? |
Is there a way to make sure that all parsed values will be inside arrays, even if they're single values?
I mean
Search string:
?foo1=bar1&foo2=bar1,bar2
queryString.parse(props.location.search,{arrayFormat: 'comma'});
I'm getting:
And I would like to always get:
Is it possible?
This would help me to verify if a filter is present on the string. I would check the
indexOf
for the array, instead of checking if it's an array first, and handling it differently if it's a single values. In my case, all of my filters allow multiple choices, hence they can always be inside arrays.Thanks
The text was updated successfully, but these errors were encountered: