Files
30-seconds-of-code/test/atob/atob.js
2018-08-02 13:32:50 +03:00

3 lines
89 B
JavaScript

const atob = str => new Buffer(str, 'base64').toString('binary');
module.exports = atob;