summaryrefslogtreecommitdiff
path: root/benchmark/dgram
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2019-02-04 22:06:08 -0800
committerRich Trott <rtrott@gmail.com>2019-02-06 22:18:31 -0800
commit29e74d4952b772f7f1bf51e1a8f1665bbbde39d1 (patch)
tree211a7131ae8f0fa7d8d5f65422cd53ad0741de33 /benchmark/dgram
parentd310d8df62f9c05d07e68c4177f225e9dda72271 (diff)
downloadandroid-node-v8-29e74d4952b772f7f1bf51e1a8f1665bbbde39d1.tar.gz
android-node-v8-29e74d4952b772f7f1bf51e1a8f1665bbbde39d1.tar.bz2
android-node-v8-29e74d4952b772f7f1bf51e1a8f1665bbbde39d1.zip
benchmark: refactor for consistent style
Code in benchmark directory sometimes uses `function () {}` for anonymous callbacks and sometimes uses `() => {}`. Multi-line arrays sometimes have a trailing comma and sometimes do not. Update to always use arrow functions for anonymous callbacks and trailing commas for multiline arrays. PR-URL: https://github.com/nodejs/node/pull/25944 Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'benchmark/dgram')
-rw-r--r--benchmark/dgram/array-vs-concat.js4
-rw-r--r--benchmark/dgram/multi-buffer.js6
-rw-r--r--benchmark/dgram/offset-length.js6
-rw-r--r--benchmark/dgram/single-buffer.js6
4 files changed, 11 insertions, 11 deletions
diff --git a/benchmark/dgram/array-vs-concat.js b/benchmark/dgram/array-vs-concat.js
index c73c953858..669cf47df4 100644
--- a/benchmark/dgram/array-vs-concat.js
+++ b/benchmark/dgram/array-vs-concat.js
@@ -43,11 +43,11 @@ function main({ dur, len, num, type, chunks }) {
}
}
- socket.on('listening', function() {
+ socket.on('listening', () => {
bench.start();
onsend();
- setTimeout(function() {
+ setTimeout(() => {
const bytes = sent * len;
const gbits = (bytes * 8) / (1024 * 1024 * 1024);
bench.end(gbits);
diff --git a/benchmark/dgram/multi-buffer.js b/benchmark/dgram/multi-buffer.js
index ee74c584e4..a1c50551b8 100644
--- a/benchmark/dgram/multi-buffer.js
+++ b/benchmark/dgram/multi-buffer.js
@@ -33,11 +33,11 @@ function main({ dur, len, num, type, chunks }) {
}
}
- socket.on('listening', function() {
+ socket.on('listening', () => {
bench.start();
onsend();
- setTimeout(function() {
+ setTimeout(() => {
const bytes = (type === 'send' ? sent : received) * len;
const gbits = (bytes * 8) / (1024 * 1024 * 1024);
bench.end(gbits);
@@ -45,7 +45,7 @@ function main({ dur, len, num, type, chunks }) {
}, dur * 1000);
});
- socket.on('message', function() {
+ socket.on('message', () => {
received++;
});
diff --git a/benchmark/dgram/offset-length.js b/benchmark/dgram/offset-length.js
index 7c78765cee..7c672acae2 100644
--- a/benchmark/dgram/offset-length.js
+++ b/benchmark/dgram/offset-length.js
@@ -29,11 +29,11 @@ function main({ dur, len, num, type }) {
}
}
- socket.on('listening', function() {
+ socket.on('listening', () => {
bench.start();
onsend();
- setTimeout(function() {
+ setTimeout(() => {
const bytes = (type === 'send' ? sent : received) * chunk.length;
const gbits = (bytes * 8) / (1024 * 1024 * 1024);
bench.end(gbits);
@@ -41,7 +41,7 @@ function main({ dur, len, num, type }) {
}, dur * 1000);
});
- socket.on('message', function() {
+ socket.on('message', () => {
received++;
});
diff --git a/benchmark/dgram/single-buffer.js b/benchmark/dgram/single-buffer.js
index 0bf650d265..d183b9cd1d 100644
--- a/benchmark/dgram/single-buffer.js
+++ b/benchmark/dgram/single-buffer.js
@@ -29,11 +29,11 @@ function main({ dur, len, num, type }) {
}
}
- socket.on('listening', function() {
+ socket.on('listening', () => {
bench.start();
onsend();
- setTimeout(function() {
+ setTimeout(() => {
const bytes = (type === 'send' ? sent : received) * chunk.length;
const gbits = (bytes * 8) / (1024 * 1024 * 1024);
bench.end(gbits);
@@ -41,7 +41,7 @@ function main({ dur, len, num, type }) {
}, dur * 1000);
});
- socket.on('message', function() {
+ socket.on('message', () => {
received++;
});