wallet-core/node_modules/atob/node-atob.js

8 lines
129 B
JavaScript
Raw Normal View History

2017-08-14 05:01:11 +02:00
"use strict";
function atob(str) {
return new Buffer(str, 'base64').toString('binary');
}
module.exports = atob.atob = atob;