TextDecoderStream
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
Note: This feature is available in Web Workers.
The TextDecoderStream
interface of the Encoding API converts a stream of text in a binary encoding, such as UTF-8 etc., to a stream of strings. It is the streaming equivalent of TextDecoder
.
Constructor
TextDecoderStream()
Creates a new
TextDecoderStream
object.
Instance properties
TextDecoderStream.encoding
Read onlyAn encoding.
TextDecoderStream.fatal
Read onlyA
boolean
indicating if the error mode is fatal.TextDecoderStream.ignoreBOM
Read onlyA
boolean
indicating whether the byte order mark is ignored.TextDecoderStream.readable
Read onlyReturns the
ReadableStream
instance controlled by this object.TextDecoderStream.writable
Read onlyReturns the
WritableStream
instance controlled by this object.
Examples
Specifications
Specification |
---|
Encoding # interface-textdecoderstream |