mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-20 03:25:02 +02:00
4 lines
84 B
JavaScript
4 lines
84 B
JavaScript
module.exports = function btoa(str) {
|
|
return new Buffer(str).toString('base64')
|
|
}
|