Skip to main content
Module

x/enzastdlib/vendor/@jrylan-json-schema-typed.ts>ContentEncoding

enzastdlib is a set of TypeScript modules that follow a common design API philosophy aiming at sane defaults and ease-of-use targeting the Deno TypeScript runtime.
Latest
enum ContentEncoding
import { ContentEncoding } from "https://deno.land/x/enzastdlib@v0.0.4/vendor/@jrylan-json-schema-typed.ts";

Members

7bit = "7bit"

Only US-ASCII characters, which use the lower 7 bits for each character.

Each line must be less than 1,000 characters.

8bit = "8bit"

Allow extended ASCII characters which can use the 8th (highest) bit to indicate special characters not available in 7bit.

Each line must be less than 1,000 characters.

Base64 = "base64"

Useful for data that is mostly non-text.

Binary = "binary"

Same character set as 8bit, with no line length restriction.

IETFToken = "ietf-token"

An extension token defined by a standards-track RFC and registered with IANA.

QuotedPrintable = "quoted-printable"

Lines are limited to 76 characters, and line breaks are represented using special characters that are escaped.

XToken = "x-token"

The two characters "X-" or "x-" followed, with no intervening white space, by any token.