projecte_ionic/node_modules/atob/node-atob.js
2022-02-09 18:30:03 +01:00

8 lines
130 B
JavaScript
Executable file

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