Remove Node.js v8 support (#1402)

This commit is contained in:
Tomas Della Vedova
2021-02-19 08:27:20 +01:00
committed by GitHub
parent 7801b2cc13
commit ab5d8997b8
44 changed files with 258 additions and 302 deletions

View File

@ -16,7 +16,7 @@ const { bench, beforeEach, afterEach } = require('../suite')({
}
})
var stackoverflow = []
let stackoverflow = []
const stackoverflowPath = join(
__dirname,
'fixtures',
@ -53,7 +53,7 @@ bench('Bulk index documents', {
action: 'bulk'
}, async b => {
b.start()
for (var i = 0; i < stackoverflow.length; i++) {
for (let i = 0; i < stackoverflow.length; i++) {
await b.client.bulk({ body: stackoverflow[i] })
}
b.end()
@ -67,7 +67,7 @@ bench('Complex search request', {
action: 'search'
}, async b => {
b.start()
for (var i = 0; i < b.iterations; i++) {
for (let i = 0; i < b.iterations; i++) {
await b.client.search({
index: INDEX,
body: {
@ -81,8 +81,8 @@ bench('Complex search request', {
})
function readSOfile () {
var i = 0
var stackoverflow = []
let i = 0
const stackoverflow = []
return new Promise((resolve, reject) => {
createReadStream(stackoverflowPath)
.pipe(split(JSON.parse))