Files
action-gh-release/node_modules/btoa-lite/btoa-node.js
softprops b28d8151ad
Some checks failed
Main / build (push) Failing after 0s
node_modules
2019-09-18 13:19:04 +09:00

4 lines
84 B
JavaScript

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