Chore: replace depracated 'new Buffer' with 'Buffer.from' (#2396)

See [Buffer](https://nodejs.org/docs/latest-v9.x/api/buffer.html) for more details
This commit is contained in:
Yaniv Efraim
2018-04-17 23:49:01 +03:00
committed by Andrey Lushnikov
parent b40e381f65
commit ed4be10ae3
3 changed files with 4 additions and 4 deletions

View File

@@ -185,7 +185,7 @@ class SimpleServer {
const pathName = url.parse(request.url).path;
if (this._auths.has(pathName)) {
const auth = this._auths.get(pathName);
const credentials = new Buffer((request.headers.authorization || '').split(' ')[1] || '', 'base64').toString();
const credentials = Buffer.from((request.headers.authorization || '').split(' ')[1] || '', 'base64').toString();
if (credentials !== `${auth.username}:${auth.password}`) {
response.writeHead(401, { 'WWW-Authenticate': 'Basic realm="Secure Area"' });
response.end('HTTP Error 401 Unauthorized: Access is denied');