@cfworker/web
Advanced tools
Comparing version 1.12.2 to 1.12.3
@@ -39,3 +39,3 @@ import { ParseOptions, TokensToRegexpOptions } from 'path-to-regexp'; | ||
compose(conditions: RouteCondition[], ...middleware: Middleware[]): this; | ||
private resolve; | ||
resolve(ctx: Context): Route | undefined; | ||
} |
{ | ||
"name": "@cfworker/web", | ||
"version": "1.12.2", | ||
"version": "1.12.3", | ||
"description": "Web framework for Cloudflare Workers and service workers, inspired by Koa and fastify", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -120,3 +120,3 @@ import { | ||
private resolve(ctx: Context) { | ||
public resolve(ctx: Context) { | ||
return this.routes.find( | ||
@@ -123,0 +123,0 @@ ({ conditions }) => |
51180