WXL
3 天以前 2cc85c64f1c64a2dbaeae276a3e2ca8420de76b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { Bench } from 'tinybench'
import { fastUri } from '../index.js'
 
const {
  equal: fastUriEqual,
  parse: fastUriParse,
} = fastUri
 
const stringA = 'example://a/b/c/%7Bfoo%7D'
const stringB = 'eXAMPLE://a/./b/../b/%63/%7bfoo%7d'
 
const componentA = fastUriParse(stringA)
const componentB = fastUriParse(stringB)
 
const benchFastUri = new Bench({ name: 'fast-uri equal' })
 
benchFastUri.add('equal string with string', function () {
  fastUriEqual(stringA, stringA)
})
 
benchFastUri.add('equal component with component', function () {
  fastUriEqual(componentA, componentA)
})
 
benchFastUri.add('equal component with string', function () {
  fastUriEqual(componentA, stringA)
})
 
benchFastUri.add('equal string with component', function () {
  fastUriEqual(stringA, componentA)
})
 
benchFastUri.add('not equal string with string', function () {
  fastUriEqual(stringA, stringB)
})
 
benchFastUri.add('not equal component with component', function () {
  fastUriEqual(componentA, componentB)
})
 
benchFastUri.add('not equal component with string', function () {
  fastUriEqual(componentA, stringB)
})
 
benchFastUri.add('not equal string with component', function () {
  fastUriEqual(stringA, componentB)
})
 
await benchFastUri.run()
console.log(benchFastUri.name)
console.table(benchFastUri.table())