Skip to content

Commit

Permalink
refactor(benchmark): remove unused params
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Jan 2, 2025
1 parent 911e840 commit fcb885b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benchmark/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ suite.add({
fn: 'const token = tokens.create(secret)'
})

suite.on('start', function onCycle (event) {
suite.on('start', function onCycle () {
process.stdout.write(' create\n\n')
})

Expand Down
2 changes: 1 addition & 1 deletion benchmark/secret.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if (global.Promise) {
})
}

suite.on('start', function onCycle (event) {
suite.on('start', function onCycle () {
process.stdout.write(' secret\n\n')
})

Expand Down
2 changes: 1 addition & 1 deletion benchmark/verify.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ suite.add({
fn: 'const valid = tokens.verify(secret, token)'
})

suite.on('start', function onCycle (event) {
suite.on('start', function onCycle () {
process.stdout.write(' verify\n\n')
})

Expand Down

0 comments on commit fcb885b

Please # to comment.