Base64 utility methods

Specification
MDN

Modules

web.atob, web.btoa.

Built-ins signatures

function atob(data: string): string;
function btoa(data: string): string;

Entry points

core-js(-pure)/stable|actual|full/atob
core-js(-pure)/stable|actual|full/btoa

TypeScript type definitions

@core-js/types/web/atob-btoa

Examples

btoa('hi, core-js');      // => 'aGksIGNvcmUtanM='
atob('aGksIGNvcmUtanM='); // => 'hi, core-js'