Files
wechatpay-enterprise-web/node_modules/atob/node-atob.js
jefferyzhao b9bdc8598b first commit
2025-07-31 17:44:12 +08:00

8 lines
130 B
JavaScript

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