lib,test: update let to const where applicable
As per the `prefer-const` eslint rule, few instances of `let` have been identified to be better with `const`. This patch updates all those instances. Refer: https://github.com/nodejs/node/issues/3118 PR-URL: https://github.com/nodejs/node/pull/3152 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
This commit is contained in:
parent
b0e7b362c2
commit
aaf9b488e2
@ -291,7 +291,7 @@ function masterInit() {
|
|||||||
var match = execArgv[i].match(/^(--debug|--debug-(brk|port))(=\d+)?$/);
|
var match = execArgv[i].match(/^(--debug|--debug-(brk|port))(=\d+)?$/);
|
||||||
|
|
||||||
if (match) {
|
if (match) {
|
||||||
let debugPort = process.debugPort + debugPortOffset;
|
const debugPort = process.debugPort + debugPortOffset;
|
||||||
++debugPortOffset;
|
++debugPortOffset;
|
||||||
execArgv[i] = match[1] + '=' + debugPort;
|
execArgv[i] = match[1] + '=' + debugPort;
|
||||||
}
|
}
|
||||||
|
@ -517,7 +517,7 @@ function formatCollectionIterator(ctx, value, recurseTimes, visibleKeys, keys) {
|
|||||||
var nextRecurseTimes = recurseTimes === null ? null : recurseTimes - 1;
|
var nextRecurseTimes = recurseTimes === null ? null : recurseTimes - 1;
|
||||||
var vals = mirror.preview();
|
var vals = mirror.preview();
|
||||||
var output = [];
|
var output = [];
|
||||||
for (let o of vals) {
|
for (const o of vals) {
|
||||||
output.push(formatValue(ctx, o, nextRecurseTimes));
|
output.push(formatValue(ctx, o, nextRecurseTimes));
|
||||||
}
|
}
|
||||||
return output;
|
return output;
|
||||||
|
@ -73,16 +73,17 @@ process.on('SIGINT', () => process.exit());
|
|||||||
|
|
||||||
// Run from closed net server above.
|
// Run from closed net server above.
|
||||||
function checkTLS() {
|
function checkTLS() {
|
||||||
let options = {
|
const options = {
|
||||||
key: fs.readFileSync(common.fixturesDir + '/keys/ec-key.pem'),
|
key: fs.readFileSync(common.fixturesDir + '/keys/ec-key.pem'),
|
||||||
cert: fs.readFileSync(common.fixturesDir + '/keys/ec-cert.pem')
|
cert: fs.readFileSync(common.fixturesDir + '/keys/ec-cert.pem')
|
||||||
};
|
};
|
||||||
let server = tls.createServer(options, noop).listen(common.PORT, function() {
|
const server = tls.createServer(options, noop)
|
||||||
tls.connect(common.PORT, { rejectUnauthorized: false }, function() {
|
.listen(common.PORT, function() {
|
||||||
this.destroy();
|
tls.connect(common.PORT, { rejectUnauthorized: false }, function() {
|
||||||
server.close();
|
this.destroy();
|
||||||
|
server.close();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
zlib.createGzip();
|
zlib.createGzip();
|
||||||
|
@ -14,6 +14,6 @@ function testUint8Array(ui) {
|
|||||||
|
|
||||||
for (let i = 0; i < 100; i++) {
|
for (let i = 0; i < 100; i++) {
|
||||||
new Buffer(0);
|
new Buffer(0);
|
||||||
let ui = new Uint8Array(65);
|
const ui = new Uint8Array(65);
|
||||||
assert.ok(testUint8Array(ui), 'Uint8Array is not zero-filled');
|
assert.ok(testUint8Array(ui), 'Uint8Array is not zero-filled');
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,7 @@ server.on('request', function(req, res) {
|
|||||||
server.close();
|
server.close();
|
||||||
});
|
});
|
||||||
server.listen(common.PORT, '127.0.0.1', function() {
|
server.listen(common.PORT, '127.0.0.1', function() {
|
||||||
let req = http.request({
|
const req = http.request({
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
host: '127.0.0.1',
|
host: '127.0.0.1',
|
||||||
port: common.PORT,
|
port: common.PORT,
|
||||||
|
@ -17,13 +17,13 @@ const norepeat = [
|
|||||||
const server = http.createServer(function(req, res) {
|
const server = http.createServer(function(req, res) {
|
||||||
var num = req.headers['x-num'];
|
var num = req.headers['x-num'];
|
||||||
if (num == 1) {
|
if (num == 1) {
|
||||||
for (let name of norepeat) {
|
for (const name of norepeat) {
|
||||||
res.setHeader(name, ['A', 'B']);
|
res.setHeader(name, ['A', 'B']);
|
||||||
}
|
}
|
||||||
res.setHeader('X-A', ['A', 'B']);
|
res.setHeader('X-A', ['A', 'B']);
|
||||||
} else if (num == 2) {
|
} else if (num == 2) {
|
||||||
let headers = {};
|
const headers = {};
|
||||||
for (let name of norepeat) {
|
for (const name of norepeat) {
|
||||||
headers[name] = ['A', 'B'];
|
headers[name] = ['A', 'B'];
|
||||||
}
|
}
|
||||||
headers['X-A'] = ['A', 'B'];
|
headers['X-A'] = ['A', 'B'];
|
||||||
@ -44,7 +44,7 @@ server.listen(common.PORT, common.mustCall(function() {
|
|||||||
{port:common.PORT, headers:{'x-num': n}},
|
{port:common.PORT, headers:{'x-num': n}},
|
||||||
common.mustCall(function(res) {
|
common.mustCall(function(res) {
|
||||||
if (n == 2) server.close();
|
if (n == 2) server.close();
|
||||||
for (let name of norepeat) {
|
for (const name of norepeat) {
|
||||||
assert.equal(res.headers[name], 'A');
|
assert.equal(res.headers[name], 'A');
|
||||||
}
|
}
|
||||||
assert.equal(res.headers['x-a'], 'A, B');
|
assert.equal(res.headers['x-a'], 'A, B');
|
||||||
|
@ -33,7 +33,7 @@ function testSocketOptions(socket, socketOptions) {
|
|||||||
setImmediate(runTests);
|
setImmediate(runTests);
|
||||||
});
|
});
|
||||||
}).listen(common.PORT, function() {
|
}).listen(common.PORT, function() {
|
||||||
let c = new tls.TLSSocket(socket, socketOptions);
|
const c = new tls.TLSSocket(socket, socketOptions);
|
||||||
c.connect(common.PORT, function() {
|
c.connect(common.PORT, function() {
|
||||||
c.end(sent);
|
c.end(sent);
|
||||||
});
|
});
|
||||||
|
@ -135,7 +135,7 @@ map.set(1, 2);
|
|||||||
var mirror = Debug.MakeMirror(map.entries(), true);
|
var mirror = Debug.MakeMirror(map.entries(), true);
|
||||||
var vals = mirror.preview();
|
var vals = mirror.preview();
|
||||||
var valsOutput = [];
|
var valsOutput = [];
|
||||||
for (let o of vals) {
|
for (const o of vals) {
|
||||||
valsOutput.push(o);
|
valsOutput.push(o);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,11 +22,11 @@ const inputString = 'ΩΩLorem ipsum dolor sit amet, consectetur adipiscing el'
|
|||||||
].forEach(function(methods) {
|
].forEach(function(methods) {
|
||||||
zlib[methods.comp](inputString, function(err, compressed) {
|
zlib[methods.comp](inputString, function(err, compressed) {
|
||||||
assert(!err);
|
assert(!err);
|
||||||
let truncated = compressed.slice(0, compressed.length / 2);
|
const truncated = compressed.slice(0, compressed.length / 2);
|
||||||
|
|
||||||
// sync sanity
|
// sync sanity
|
||||||
assert.doesNotThrow(function() {
|
assert.doesNotThrow(function() {
|
||||||
let decompressed = zlib[methods.decompSync](compressed);
|
const decompressed = zlib[methods.decompSync](compressed);
|
||||||
assert.equal(decompressed, inputString);
|
assert.equal(decompressed, inputString);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ const net = require('net');
|
|||||||
const count = 12;
|
const count = 12;
|
||||||
|
|
||||||
if (process.argv[2] === 'child') {
|
if (process.argv[2] === 'child') {
|
||||||
let sockets = [];
|
const sockets = [];
|
||||||
|
|
||||||
process.on('message', function(m, socket) {
|
process.on('message', function(m, socket) {
|
||||||
function sendClosed(id) {
|
function sendClosed(id) {
|
||||||
@ -42,7 +42,7 @@ if (process.argv[2] === 'child') {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const server = net.createServer();
|
const server = net.createServer();
|
||||||
let sockets = [];
|
const sockets = [];
|
||||||
let sent = 0;
|
let sent = 0;
|
||||||
|
|
||||||
server.on('connection', function(socket) {
|
server.on('connection', function(socket) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user