Skip to content

Commit

Permalink
Fix benchmark order
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Apr 29, 2022
1 parent a8f4099 commit 00547e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/benchmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ suite
.add('crypto.randomUUID', () => {
crypto.randomUUID()
})
.add('uid/secure', () => {
uidSecure(32)
})
.add('@napi-rs/uuid', () => {
napiV4()
})
.add('uid/secure', () => {
uidSecure(32)
})
.add('@lukeed/uuid', () => {
lukeed4()
})
Expand Down

0 comments on commit 00547e7

Please sign in to comment.