()
| 203 | } |
| 204 | |
| 205 | function createNode(): RouteNode { |
| 206 | return { |
| 207 | staticChildren: Object.create(null) as Record<string, RouteNode>, |
| 208 | hasStaticChildren: false, |
| 209 | paramChild: null, |
| 210 | wildcardChild: null, |
| 211 | routes: [], |
| 212 | minIndex: Number.POSITIVE_INFINITY, |
| 213 | }; |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * Routes requests to different handlers based on the request path and method. |
no outgoing calls
no test coverage detected