aboutsummaryrefslogtreecommitdiff
path: root/node_modules/registry-auth-token/base64.js
blob: ff0f6cb9973dc1dba46551ba20d105cb4bee3dbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function decodeBase64 (base64) {
  return Buffer.from(base64, 'base64').toString('utf8')
}

function encodeBase64 (string) {
  return Buffer.from(string, 'utf8').toString('base64')
}

module.exports = {
  decodeBase64: decodeBase64,
  encodeBase64: encodeBase64
}