Bun

指南实用工具

使用 Bun 编码和解码 base64 字符串

Bun 实现了 Web 标准的 atobbtoa 函数,用于编码和解码 base64 字符串。

const data = "hello world";
const encoded = btoa(data); // => "aGVsbG8gd29ybGQ="
const decoded = atob(encoded); // => "hello world"

请参阅文档 > Web API,获取 Bun 中实现的 Web API 的完整细分。