Files
stale/node_modules/atob-lite/atob-node.js
Shawn Napora c607b751c2 release v1
2019-08-06 17:37:58 -04:00

4 lines
95 B
JavaScript

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