Browse Source

benchmark: favor === over ==

Refs: https://github.com/nodejs/node/pull/7961#discussion_r73788501
PR-URL: https://github.com/nodejs/node/pull/8000
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: Andreas Madsen <amwebdk@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
v7.x
Rich Trott 9 years ago
parent
commit
ae25ed3ccd
  1. 2
      benchmark/buffers/buffer-bytelength.js
  2. 2
      benchmark/crypto/cipher-stream.js
  3. 4
      benchmark/dgram/array-vs-concat.js
  4. 2
      benchmark/dgram/multi-buffer.js
  5. 2
      benchmark/dgram/offset-length.js
  6. 2
      benchmark/dgram/single-buffer.js
  7. 12
      benchmark/http/_http_simple.js

2
benchmark/buffers/buffer-bytelength.js

@ -50,7 +50,7 @@ function main(conf) {
}
function buildString(str, times) {
if (times == 1) return str;
if (times === 1) return str;
return str + buildString(str, times - 1);
}

2
benchmark/crypto/cipher-stream.js

@ -31,7 +31,7 @@ function main(conf) {
var bob_secret = bob.computeSecret(alice.getPublicKey(), pubEnc, 'hex');
// alice_secret and bob_secret should be the same
assert(alice_secret == bob_secret);
assert(alice_secret === bob_secret);
var alice_cipher = crypto.createCipher(conf.cipher, alice_secret);
var bob_cipher = crypto.createDecipher(conf.cipher, bob_secret);

4
benchmark/dgram/array-vs-concat.js

@ -46,14 +46,14 @@ function server() {
var onsend = type === 'concat' ? onsendConcat : onsendMulti;
function onsendConcat() {
if (sent++ % num == 0)
if (sent++ % num === 0)
for (var i = 0; i < num; i++) {
socket.send(Buffer.concat(chunk), PORT, '127.0.0.1', onsend);
}
}
function onsendMulti() {
if (sent++ % num == 0)
if (sent++ % num === 0)
for (var i = 0; i < num; i++) {
socket.send(chunk, PORT, '127.0.0.1', onsend);
}

2
benchmark/dgram/multi-buffer.js

@ -45,7 +45,7 @@ function server() {
var socket = dgram.createSocket('udp4');
function onsend() {
if (sent++ % num == 0)
if (sent++ % num === 0)
for (var i = 0; i < num; i++)
socket.send(chunk, PORT, '127.0.0.1', onsend);
}

2
benchmark/dgram/offset-length.js

@ -37,7 +37,7 @@ function server() {
var socket = dgram.createSocket('udp4');
function onsend() {
if (sent++ % num == 0)
if (sent++ % num === 0)
for (var i = 0; i < num; i++)
socket.send(chunk, 0, chunk.length, PORT, '127.0.0.1', onsend);
}

2
benchmark/dgram/single-buffer.js

@ -37,7 +37,7 @@ function server() {
var socket = dgram.createSocket('udp4');
function onsend() {
if (sent++ % num == 0)
if (sent++ % num === 0)
for (var i = 0; i < num; i++)
socket.send(chunk, PORT, '127.0.0.1', onsend);
}

12
benchmark/http/_http_simple.js

@ -37,7 +37,7 @@ var server = module.exports = http.createServer(function(req, res) {
var status = 200;
var n, i;
if (command == 'bytes') {
if (command === 'bytes') {
n = ~~arg;
if (n <= 0)
throw new Error('bytes called with n <= 0');
@ -46,7 +46,7 @@ var server = module.exports = http.createServer(function(req, res) {
}
body = storedBytes[n];
} else if (command == 'buffer') {
} else if (command === 'buffer') {
n = ~~arg;
if (n <= 0)
throw new Error('buffer called with n <= 0');
@ -58,7 +58,7 @@ var server = module.exports = http.createServer(function(req, res) {
}
body = storedBuffer[n];
} else if (command == 'unicode') {
} else if (command === 'unicode') {
n = ~~arg;
if (n <= 0)
throw new Error('unicode called with n <= 0');
@ -67,14 +67,14 @@ var server = module.exports = http.createServer(function(req, res) {
}
body = storedUnicode[n];
} else if (command == 'quit') {
} else if (command === 'quit') {
res.connection.server.close();
body = 'quitting';
} else if (command == 'fixed') {
} else if (command === 'fixed') {
body = fixed;
} else if (command == 'echo') {
} else if (command === 'echo') {
res.writeHead(200, { 'Content-Type': 'text/plain',
'Transfer-Encoding': 'chunked' });
req.pipe(res);

Loading…
Cancel
Save