A utility class for Base64 encoding and decoding operations.

Base64 编码和解码操作的实用工具类。

构造函数

属性

chars: string = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"

The character set used for Base64 encoding.

用于 Base64 编码的字符集。

lookup: Uint8Array = null

Use a lookup table to find the index.

使用查找表查找索引。

reg: RegExp = ...

Regular expression for validating Base64 encoded strings, including data URIs.

用于验证 Base64 编码字符串(包括数据 URI)的正则表达式。

reghead: RegExp = ...

Regular expression for matching the header of a data URI.

用于匹配数据 URI 头部的正则表达式。

方法

  • 参数

    • base64: string

      The base64 string to decode.

    返回 ArrayBuffer

    Decodes a base64 string to an ArrayBuffer.

    对 base64 字符串进行解码,返回 ArrayBuffer。

  • 参数

    • arraybuffer: ArrayBuffer

      The ArrayBuffer to encode.

    返回 string

    Encodes an ArrayBuffer to a base64 string.

    对 ArrayBuffer 进行编码,返回 base64 字符串。

  • 参数

    • str: string

      The string to check.

    返回 boolean

    Determines if a string is a base64 encoded string.

    判断字符串是否是 base64 编码的字符串。