deno.land / std@0.201.0 / http / util.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
import { Status, STATUS_TEXT } from "./http_status.ts";import { deepMerge } from "../collections/deep_merge.ts";
/** * Internal utility for returning a standardized response, automatically defining the body, status code and status text, according to the response type. */export function createCommonResponse( status: Status, body?: BodyInit | null, init?: ResponseInit,): Response { if (body === undefined) { body = STATUS_TEXT[status]; } init = deepMerge({ status, statusText: STATUS_TEXT[status], }, init ?? {}); return new Response(body, init);}
std

Version Info

Tagged at
a year ago