Files
github-action-setup-xmake/node_modules/btoa-lite/btoa-node.js
T
2019-09-30 17:55:21 +08:00

4 lines
84 B
JavaScript

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