@cto.af/wtf8 - v0.0.2
    Preparing search index...

    Class Wtf8Decoder

    Decoder for WTF-8.

    Implements

    • TextDecoderCommon
    Index

    Constructors

    • Parameters

      • label: string = 'wtf8'
      • options: undefined | Wtf8DecodeOptions = undefined

      Returns Wtf8Decoder

    Properties

    DEFAULT_BUFFERSIZE: number = 0x1000
    bufferSize: number
    encoding: "wtf-8" = WTF8

    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

    Methods

    • Returns the result of running encoding's decoder. The method can be invoked zero or more times with options's stream set to true, and then once without options's stream (or set to false), to process a fragmented input. If the invocation without options's stream (or set to false) has no input, it's clearest to omit both arguments.

      If the error mode is "fatal" and encoding's decoder returns error, throws a TypeError.

      Parameters

      • Optionalinput: AllowSharedBufferSource

        TypedArray to read from.

      • Optionaloptions: TextDecodeOptions

        Could allow streaming.

      Returns string

      Decoded string.

      On invalidly-encoded inputs.