Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/http_utils/status.ts

HTTP utility collection
Latest
import * as httpUtils from "https://deno.land/x/http_utils@2.0.0-beta.1/status.ts";

Enums

An HTTP status that is a client error (4XX).

An HTTP status that is a informational (1XX).

An HTTP status that is a redirect (3XX).

An HTTP status that is a server error (5XX).

An HTTP status that is a success (2XX).

Variables

An HTTP status that is an error (4XX and 5XX).

Standard HTTP status codes.

Functions

Whether the input is ClientErrorStatus or not.

Whether the input is ClientErrorStatus or ServerErrorStatus or not.

Whether the input is InformationalStatus or not.

Whether the input is RedirectionStatus or not.

Whether the input is ServerErrorStatus or not.

Whether the input is SuccessfulStatus or not.