1
0
mirror of https://github.com/actions/labeler synced 2026-05-05 19:27:48 +02:00
Files
labeler/node_modules/atob-lite/atob-node.js
Shawn Napora 660b172085 add modules
2019-08-08 10:10:17 -04:00

4 lines
95 B
JavaScript

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