Skip to content

Commit

Permalink
refactor(hono-base): remove unneeded processes and variables (#3649)
Browse files Browse the repository at this point in the history
  • Loading branch information
EdamAme-x authored Nov 9, 2024
1 parent 8a8a576 commit 61bee9f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/hono-base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,7 @@ class Hono<E extends Env = Env, S extends Schema = {}, BasePath extends string =
this.#addRoute(method, this.#path, args1)
}
args.forEach((handler) => {
if (typeof handler !== 'string') {
this.#addRoute(method, this.#path, handler)
}
this.#addRoute(method, this.#path, handler)
})
return this as any
}
Expand Down Expand Up @@ -489,15 +487,17 @@ class Hono<E extends Env = Env, S extends Schema = {}, BasePath extends string =
executionCtx?: ExecutionContext
): Response | Promise<Response> => {
if (input instanceof Request) {
if (requestInit !== undefined) {
input = new Request(input, requestInit)
}
return this.fetch(input, Env, executionCtx)
return this.fetch(requestInit ? new Request(input, requestInit) : input, Env, executionCtx)
}
input = input.toString()
const path = /^https?:\/\//.test(input) ? input : `http://localhost${mergePath('/', input)}`
const req = new Request(path, requestInit)
return this.fetch(req, Env, executionCtx)
return this.fetch(
new Request(
/^https?:\/\//.test(input) ? input : `http://localhost${mergePath('/', input)}`,
requestInit
),
Env,
executionCtx
)
}

/**
Expand Down

0 comments on commit 61bee9f

Please sign in to comment.