/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-conditionally-enabl-61e6cbabb460-conditionally-enabled-s0310-c0000.md
Conditionally enabled - hono-docs
Conditionally enabled Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt conditionally enabled Summa...
Conditionally enabled
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#conditionally-enabled
Summary
## Content
```ts
const app = new Hono()
app.use(
'*',
timing({
// c: Context of the request
enabled: (c) => c.req.method === 'POST',
})
)