Interface TextDecoderStream

    interface TextDecoderStream {
        encoding: string;
        fatal: boolean;
        ignoreBOM: boolean;
        readable: ReadableStream<string>;
        writable: WritableStream<BufferSource>;
    }
    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

    readable: ReadableStream<string>