Skip to content

Commit

Permalink
fix: adjust blob for managed timer (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelGSS authored Oct 11, 2024
1 parent e314fc3 commit cb4ef89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bench/blob.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ suite
)
.add(
'arrayBuffer (1024)',
async function (deferred) {
async function () {
return blob1024.arrayBuffer()
},
)
.add('slice (0, 64)', function () {
const blob = blob128.slice(0, 64)
return blob
})
.add('slice (0, 512)', function (deferred) {
.add('slice (0, 512)', function () {
const blob = blob1024.slice(0, 512)
return blob
})
Expand Down

0 comments on commit cb4ef89

Please sign in to comment.