Base64 utility methods
Modules
function atob(data: string): string;
function btoa(data: string): string;
CommonJS entry points
core-js(-pure)/stable|actual|full/atob
core-js(-pure)/stable|actual|full/btoa
Examples
btoa('hi, core-js'); // => 'aGksIGNvcmUtanM='
atob('aGksIGNvcmUtanM='); // => 'hi, core-js'