action-gh-release/node_modules/btoa-lite/btoa-node.js
2019-10-20 19:16:50 -04:00

3 lines
84 B
JavaScript

module.exports = function btoa(str) {
return new Buffer(str).toString('base64')
}