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。