atob.js/node-atob.js

8 lines
130 B
JavaScript
Raw Normal View History

"use strict";
function atob(str) {
2018-03-28 04:26:00 +00:00
return Buffer.from(str, 'base64').toString('binary');
}
module.exports = atob.atob = atob;