const data = "hello world";
const encoded = btoa(data); // => "aGVsbG8gd29ybGQ="
const decoded = atob(encoded); // => "hello world"
请参阅 文档 > Web API,以全面了解在 Bun 中实现的 Web API。
const data = "hello world";
const encoded = btoa(data); // => "aGVsbG8gd29ybGQ="
const decoded = atob(encoded); // => "hello world"
请参阅 文档 > Web API,以全面了解在 Bun 中实现的 Web API。