This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/registry-auth-token/base64.js
2020-11-01 22:46:04 +00:00

13 lines
264 B
JavaScript

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
}