diff options
Diffstat (limited to 'includes/external/addressbook/node_modules/http2-wrapper/source/proxies/get-auth-headers.js')
-rw-r--r-- | includes/external/addressbook/node_modules/http2-wrapper/source/proxies/get-auth-headers.js | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/includes/external/addressbook/node_modules/http2-wrapper/source/proxies/get-auth-headers.js b/includes/external/addressbook/node_modules/http2-wrapper/source/proxies/get-auth-headers.js deleted file mode 100644 index 364a858..0000000 --- a/includes/external/addressbook/node_modules/http2-wrapper/source/proxies/get-auth-headers.js +++ /dev/null @@ -1,17 +0,0 @@ -'use strict'; - -module.exports = self => { - const {username, password} = self.proxyOptions.url; - - if (username || password) { - const data = `${username}:${password}`; - const authorization = `Basic ${Buffer.from(data).toString('base64')}`; - - return { - 'proxy-authorization': authorization, - authorization - }; - } - - return {}; -}; |