aswi2020vldc-gitlab/templetes/node_modules/atob/node-atob.js @ 9b6ff40e
1 |
"use strict"; |
---|---|
2 |
|
3 |
function atob(str) { |
4 |
return Buffer.from(str, 'base64').toString('binary'); |
5 |
}
|
6 |
|
7 |
module.exports = atob.atob = atob; |