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
as this library contains the implementation of URLPattern for deno.
Deno's URLPattern.exec(string) implementation differs from the node polyfill, which is causing some libraries to behave inconsistently or even break when running in Deno.
hostname.groups object does not contain the expected named group (domain), while in Chrome/Node's polyfill, it does ("groups": { "domain": "localhost" }).
The text was updated successfully, but these errors were encountered:
Hi,
I'm linking issue here from:
URLPattern.exec(string)
implementation differs from the node polyfill deno#28247as this library contains the implementation of
URLPattern
for deno.Deno's
URLPattern.exec(string)
implementation differs from the node polyfill, which is causing some libraries to behave inconsistently or even break when running in Deno.expected
actual
difference
hostname.groups
object does not contain the expected named group (domain
), while in Chrome/Node's polyfill, it does ("groups": { "domain": "localhost" }
).The text was updated successfully, but these errors were encountered: