Open 43081j opened 9 months ago
Their usage:
qs.stringify
{ encode: false, delimiter: ',' }
qs.parse
:
note we now have picoquery available too: https://github.com/43081j/picoquery
so we could use this with the custom delimiter. however, it doesn't have an equivalent to encode: false
since URL params are meant to be encoded (so it is by design that such an option doesn't exist).
may be possible it isn't needed though
the auth0 library here: https://github.com/auth0/auth0.js
could likely migrate to using
URLSearchParams
instead of theqs
package.they do not specify a node constraint so we should note to the maintainers in any contribution we do that it will introduce a minimum node version (iirc
>=10
).if they need nesting support (
foo[bar]=baz
), we should usefast-querystring
ornested-querystring