Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

14 lines
322 B

const safeBuffer = require('safe-buffer').Buffer
function decodeBase64 (base64) {
return safeBuffer.from(base64, 'base64').toString('utf8')
}
function encodeBase64 (string) {
return safeBuffer.from(string, 'utf8').toString('base64')
}
module.exports = {
decodeBase64: decodeBase64,
encodeBase64: encodeBase64
}