Base64 utility methods
Less than 1 minute
Base64 utility methods
Modules
Types
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
Example
btoa("hi, core-js"); // => 'aGksIGNvcmUtanM='
atob("aGksIGNvcmUtanM="); // => 'hi, core-js'