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
Is your feature request related to a problem? Please describe.
Currently, there is no utility in the jsr:@std repo that simplifies the construction of URLs with dynamic path parameters and query strings. For example, something that can easily handle creating URLs like:
Is your feature request related to a problem? Please describe.
Currently, there is no utility in the
jsr:@std
repo that simplifies the construction of URLs with dynamic path parameters and query strings. For example, something that can easily handle creating URLs like:Additionally, there's no convenient way to update
searchParams
for a URL dynamically, which is something I'd like to handle more efficiently.Describe the solution you'd like
I'd like to have a utility similar to
urlcat
that:searchParams
on demand. For example:Where if
request.url
is/path/1?offset=0&limit=10
, it will update thesearchParams
to output:Describe alternatives you've considered
urlcat
, but integrating a more native solution into the repo would streamline and reduce dependencies.searchParams
, though this can get verbose and repetitive for common use cases.The text was updated successfully, but these errors were encountered: