You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be useful to implement URLSearchParams especially that I can't find anything for query manipulation on Pursuit. Query is bit tricky: there is URL escaping and whatnot. And it's often necessary when writing frontends that make requests for the backend.
The text was updated successfully, but these errors were encountered:
https://nodejs.org/api/url.html#class-urlsearchparams
We currently have
Query
as a very thin wrapper around nodejsquerystring
:https://github.com/purescript-node/purescript-node-url/blob/v6.0.0/src/Node/URL.js#L2
Apparently this is legacy in the API:
https://nodejs.org/api/url.html#legacy-urlobject
It would be useful to implement
URLSearchParams
especially that I can't find anything for query manipulation on Pursuit. Query is bit tricky: there is URL escaping and whatnot. And it's often necessary when writing frontends that make requests for the backend.The text was updated successfully, but these errors were encountered: