summaryrefslogtreecommitdiff
path: root/benchmark/buffers/buffer-indexof.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/buffers/buffer-indexof.js')
-rw-r--r--benchmark/buffers/buffer-indexof.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/benchmark/buffers/buffer-indexof.js b/benchmark/buffers/buffer-indexof.js
index cae8b964ae..1545475269 100644
--- a/benchmark/buffers/buffer-indexof.js
+++ b/benchmark/buffers/buffer-indexof.js
@@ -1,6 +1,6 @@
'use strict';
-var common = require('../common.js');
-var fs = require('fs');
+const common = require('../common.js');
+const fs = require('fs');
const path = require('path');
const searchStrings = [
@@ -21,7 +21,7 @@ const searchStrings = [
'</i> to the Caterpillar'
];
-var bench = common.createBenchmark(main, {
+const bench = common.createBenchmark(main, {
search: searchStrings,
encoding: ['undefined', 'utf8', 'ucs2', 'binary'],
type: ['buffer', 'string'],
@@ -29,7 +29,7 @@ var bench = common.createBenchmark(main, {
});
function main(conf) {
- var iter = (conf.iter) * 100000;
+ const iter = (conf.iter) * 100000;
var aliceBuffer = fs.readFileSync(
path.resolve(__dirname, '../fixtures/alice.html')
);