setup-maven/node_modules/btoa-lite/btoa-node.js
2019-12-07 16:09:23 +03:00

4 lines
84 B
JavaScript

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