mirror of
https://gitea.com/actions/setup-node.git
synced 2024-11-24 11:09:33 +01:00
3 lines
95 B
JavaScript
3 lines
95 B
JavaScript
module.exports = function atob(str) {
|
|
return Buffer.from(str, 'base64').toString('binary')
|
|
}
|