Skip to main content
Module

x/oak/deps.ts>acceptsLanguages

A middleware framework for handling HTTP with Deno 🐿️ 🦕
Extremely Popular
Go to Latest
function acceptsLanguages
import { acceptsLanguages } from "https://deno.land/x/oak@v11.1.0/deps.ts";

Returns an array of languages accepted by the request, in order of preference. If there are no languages supplied in the request, then ["*"] is returned, imply any language is accepted.

Returns

string[]

For a given set of languages, return the best match accepted in the request. If no languages match, then the function returns undefined.

Parameters

request: Request
...langs: string[]

Returns

string | undefined