aboutsummaryrefslogtreecommitdiff
path: root/bench/snippets/buffer-read.js
diff options
context:
space:
mode:
Diffstat (limited to 'bench/snippets/buffer-read.js')
-rw-r--r--bench/snippets/buffer-read.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/bench/snippets/buffer-read.js b/bench/snippets/buffer-read.js
index 5da645153..46c64b59f 100644
--- a/bench/snippets/buffer-read.js
+++ b/bench/snippets/buffer-read.js
@@ -23,9 +23,7 @@ time("Uint8Array[]", () => array[0]);
console.log("");
time("Buffer.getBigInt64BE ", () => buf.readBigInt64BE(0));
-time("DataView.getBigInt64 (BE)", () =>
- view.getBigInt64(0, false).toString(10)
-);
+time("DataView.getBigInt64 (BE)", () => view.getBigInt64(0, false).toString(10));
console.log("");
time("Buffer.readBigInt64LE ", () => buf.readBigInt64LE(0));