Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TextDecoderCommon

interface TextDecoderCommon {
readonly encoding: string;
readonly fatal: boolean;
readonly ignoreBOM: boolean;
}

§Properties

§
readonly encoding: string
[src]

Returns encoding's name, lowercased.

§
readonly fatal: boolean
[src]

Returns true if error mode is "fatal", otherwise false.

§
readonly ignoreBOM: boolean
[src]

Returns the value of ignore BOM.