Opal-Estate-Pro/node_modules/atob/node-atob.js
2019-09-13 11:27:52 +07: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;