Skip to main content

@std/http@0.215.0

latest
Works with
It is unknown whether this package works with Browsers, Deno, Node.js, Cloudflare Workers, Bun
It is unknown whether this package works with Browsers
It is unknown whether this package works with Deno
It is unknown whether this package works with Node.js
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Bun
JSR Score70%
Published2 years ago (0.215.0)
function acceptsLanguages
acceptsLanguages(request: Request): string[]

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.

Examples

Example 1

import { acceptsLanguages } from "@std/http/negotiation";

const req = new Request("https://example.com/", {
  headers: {
    "accept-language": "fr-CH, fr;q=0.9, en;q=0.8, de;q=0.7, *;q=0.5",
  },
});

acceptsLanguages(req); // ["fr-CH", "fr", "en", "de", "*"]

Parameters

Return Type

acceptsLanguages(
request: Request,
...langs: string[]
): string | undefined

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

Examples

Example 1

import { acceptsLanguages } from "@std/http/negotiation";

const req = new Request("https://example.com/", {
  headers: {
    "accept-language": "fr-CH, fr;q=0.9, en;q=0.8, de;q=0.7, *;q=0.5",
  },
});

acceptsLanguages(req, "en-gb", "en-us", "en"); // "en"

Parameters

...langs: string[]

Return Type

string | undefined

Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@std/http

Import symbol

import { acceptsLanguages } from "@std/http";
or

Import directly with a jsr specifier

import { acceptsLanguages } from "jsr:@std/http";