deno / 1.23.2 / ~ / atob.html /

atob

Decodes a string of data which has been encoded using base-64 encoding.

console.log(atob("aGVsbG8gd29ybGQ=")); // outputs 'hello world'
function atob( s: string) : string;
atob( s: string) : string

Parameters

s: string

Return Type

string

© 2018–2022 the Deno authors
https://doc.deno.land/deno/stable/~/atob