Initial commit

This commit is contained in:
Luca Schwan
2020-03-21 03:37:31 +01:00
commit d8bba07211
1069 changed files with 139402 additions and 0 deletions

14
node_modules/registry-auth-token/base64.js generated vendored Normal file
View File

@ -0,0 +1,14 @@
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
}