import { accepts } from "https://deno.land/x/hono@v4.3.7/helper/accepts/accepts.ts";
Match the accept header with the given options.
Examples
Example 1
Example 1
app.get('/users', (c) => {
const lang = accepts(c, {
header: 'Accept-Language',
supports: ['en', 'zh'],
default: 'en',
})
})
type
(c: Context, options: acceptsOptions) => string