Interface TextDecoderCommon

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

    Properties

    encoding: string

    Returns encoding's name, lowercased.

    MDN Reference

    fatal: boolean

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

    MDN Reference

    ignoreBOM: boolean

    Returns the value of ignore BOM.

    MDN Reference