Skip to main content
Module

std/http/_io.ts

Deno standard library
Go to Latest
import * as mod from "https://deno.land/std@0.77.0/http/_io.ts";

Functions

ParseHTTPVersion parses a HTTP version string. "HTTP/1.0" returns (1, 0). Ported from https://github.com/golang/go/blob/f5c43b9/src/net/http/request.go#L766-L792

Read trailer headers from reader and append values to headers. "trailer" field will be deleted.

Write trailer headers to writer. It should mostly should be called after writeResponse().