1
0
mirror of https://github.com/actions/setup-dotnet.git synced 2026-02-18 23:41:19 +01:00
Files
setup-dotnet/node_modules/atob-lite/atob-node.js
2019-10-03 16:35:25 -07:00

4 lines
95 B
JavaScript

module.exports = function atob(str) {
return Buffer.from(str, 'base64').toString('binary')
}