Partie-2/node_modules/atob/node-atob.js
Simon Priet 9e2991e668 init
2021-09-05 22:53:58 +02:00

8 lines
130 B
JavaScript

"use strict";
function atob(str) {
return Buffer.from(str, 'base64').toString('binary');
}
module.exports = atob.atob = atob;