Initial commit

This commit is contained in:
2020-08-14 17:18:53 +03:00
commit ff1d8db3e0
1084 changed files with 123333 additions and 0 deletions

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

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