x/oak/request.ts

A middleware framework for handling HTTP with Deno 🐿️ 🦕
Very Popular
Go to Latest
method Request.prototype.acceptsEncodings
import { Request } from "https://dotland-vbqsvsrpfncg.deno-staging.dev/x/oak@v11.1.0/request.ts?p=prototype.acceptsEncodings&s=Request";

Returns an array of encodings, accepted by the requestor, in order of preference. If there are no encodings supplied by the requestor, then ["*"] is returned, matching any.

Returns

string[] | undefined[src]

For a given set of encodings, return the best match accepted by the requestor. If there are no encodings that match, then the method returns undefined.

NOTE: You should always supply identity as one of the encodings to ensure that there is a match when the Accept-Encoding header is part of the request.

Parameters

...encodings: string[][src]

Returns

string | undefined[src]