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
Can this pattern be supported: /hello** match path: /helloworld
code demo:
import{createRouter,addRoute,findRoute}from'rou3'constrouter=createRouter()addRoute(router,'get','/**',1)addRoute(router,'get','/hello**',2)// want match the route 2console.log(findRoute(router,'get','/helloworld'))
Additional information
Would you be willing to help implement this feature?
The text was updated successfully, but these errors were encountered:
Describe the feature
Can this pattern be supported: /hello** match path: /helloworld
code demo:
Additional information
The text was updated successfully, but these errors were encountered: