I am new to qs and am using it as part of react-instantsearch
I have the following code:
const queryString = qsModule.stringify(routeState, {
encode: false,
format: 'RFC1738',
})
which is giving me:
Ideally I want the following
I've noticed that if I disable the "encoding: false" option I get:
Is there a way to combine both options to get the desired result...
Thanks in advance.