Skip to main content
Module

x/hono/helper.ts>accepts

Fast, Lightweight, Web-standards
Extremely Popular
Go to Latest
variable accepts
import { accepts } from "https://deno.land/x/hono@v4.2.5/helper.ts";

Match the accept header with the given options.

Examples

Example 1

app.get('/users', (c) => {
  const lang = accepts(c, {
    header: 'Accept-Language',
    supports: ['en', 'zh'],
    default: 'en',
  })
})

type

(c: Context, options: acceptsOptions) => unknown