mimekit-ts - v1.0.0
    Preparing search index...

    Function unquote

    • Unquote the specified text.

      Removes escaped backslashes within the text.

      Parameters

      • text: string

        Text to unquote.

      • OptionalconvertTabsToSpaces: boolean

        Whether tab characters should be converted to spaces.

      Returns string

      The unquoted text.

      text is null or undefined.

    • Unquote a byte range.

      Parameters

      • text: Uint8Array

        Bytes to unquote.

      • OptionalstartIndex: number

        Starting index in text.

      • Optionallength: number

        Number of bytes to unquote.

      • OptionalconvertTabsToSpaces: boolean

        Whether tab bytes should be converted to spaces.

      Returns Uint8Array

      The unquoted bytes.

      startIndex or length is outside text.