Files
30-seconds-of-code/snippets/atob.md
2020-09-15 21:52:00 +03:00

17 lines
369 B
Markdown

---
title: atob
tags: node,string,beginner
---
Decodes a string of data which has been encoded using base-64 encoding.
- Create a `Buffer` for the given string with base-64 encoding and use `Buffer.toString('binary')` to return the decoded string.
```js
const atob = str => Buffer.from(str, 'base64').toString('binary');
```
```js
atob('Zm9vYmFy'); // 'foobar'
```