bindings/encoding library

Classes

TextDecodeOptions
TextDecoder
The interface represents a decoder for a specific text encoding, such as UTF-8, ISO-8859-2, KOI8-R, GBK, etc. A decoder takes a stream of bytes as input and emits a stream of code points. Note: This feature is available in Web Workers
TextDecoderCommon
TextDecoderOptions
TextDecoderStream
The interface of the Encoding API converts a stream of strings into bytes in the UTF-8 encoding. It is the streaming equivalent of TextDecoder.
TextEncoder
The interface takes a stream of code points as input and emits a stream of UTF-8 bytes. Note: This feature is available in Web Workers
TextEncoderCommon
TextEncoderEncodeIntoResult
TextEncoderStream
The interface of the Encoding API converts a stream of strings into bytes in the UTF-8 encoding. It is the streaming equivalent of TextEncoder.