import { atob } from "https://deno.land/x/xdg@v10.6.0/vendor/types/deno.d.ts";
Decodes a string of data which has been encoded using base-64 encoding.
console.log(atob("aGVsbG8gd29ybGQ=")); // outputs 'hello world'
import { atob } from "https://deno.land/x/xdg@v10.6.0/vendor/types/deno.d.ts";
Decodes a string of data which has been encoded using base-64 encoding.
console.log(atob("aGVsbG8gd29ybGQ=")); // outputs 'hello world'