Files
30-seconds-of-code/javascript/snippets/atob.md
2023-05-01 22:35:56 +03:00

455 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Decode Base64 encoded string snippet
node
string
thread 2020-09-15T16:28:04+03:00

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

  • Create a Buffer for the given string with base-64 encoding.
  • Use Buffer.prototype.toString() to return the decoded string.
const atob = str => Buffer.from(str, 'base64').toString('binary');
atob('Zm9vYmFy'); // 'foobar'