Files
30-seconds-of-code/test/atob/atob.js
2018-10-03 23:08:31 +02:00

3 lines
90 B
JavaScript

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