Files
30-seconds-of-code/test/atob/atob.js
2018-01-18 20:09:27 +00:00

2 lines
88 B
JavaScript

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