.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / atob / node-atob.js
1 "use strict";
2
3 function atob(str) {
4   return Buffer.from(str, 'base64').toString('binary');
5 }
6
7 module.exports = atob.atob = atob;