Files
Ceras/themes/ceras/node_modules/atob/node-atob.js
T
2023-07-12 16:31:19 +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;