Base64 utility methods

Specification MDN

Modules

web.atob, web.btoa.

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'