Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 615 Bytes

base64.md

File metadata and controls

24 lines (18 loc) · 615 Bytes

Base64编码

提供基本的 Base64 转换函数。

$base64.encode(str[, encoding = 'utf-8')

  • str {string} 要编码的字符串
  • encoding {string} 可选,字符编码

将字符串str autox.js 使用Base64编码并返回编码后的字符串。

log($base64.encode("autox.js"));
// 日志输出 YXV0b3gunM=

$base64.decode(str[, encoding = 'utf-8'])

  • str {string} 要解码的字符串
  • encoding {string} 可选,字符编码

将字符串st YXV0b3gunM= r使用Base64解码并返回解码后的字符串。

log($base64.decode("YXV0b3gunM"));
// 日志输出 autox.js