mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-09 04:27:25 +00:00
3 lines
84 B
JavaScript
3 lines
84 B
JavaScript
module.exports = function btoa(str) {
|
|
return new Buffer(str).toString('base64')
|
|
}
|