@@ -23,33 +23,33 @@ const doc = {
23
23
} ;
24
24
25
25
suite
26
- . add ( `find` , function ( ) {
26
+ . add ( `find` , ( ) => {
27
27
const pointer = parseJsonPointer ( '/foo/bar/0/baz' ) ;
28
28
find ( doc , pointer ) ;
29
29
} )
30
- . add ( `find ES5` , function ( ) {
30
+ . add ( `find ES5` , ( ) => {
31
31
const pointer = parseJsonPointerEs5 ( '/foo/bar/0/baz' ) ;
32
32
findEs5 ( doc , pointer ) ;
33
33
} )
34
- . add ( `findByPointer (v1)` , function ( ) {
34
+ . add ( `findByPointer (v1)` , ( ) => {
35
35
findByPointerV1 ( '/foo/bar/0/baz' , doc ) ;
36
36
} )
37
- . add ( `findByPointer (v2)` , function ( ) {
37
+ . add ( `findByPointer (v2)` , ( ) => {
38
38
findByPointerV2 ( '/foo/bar/0/baz' , doc ) ;
39
39
} )
40
- . add ( `findByPointer (v3)` , function ( ) {
40
+ . add ( `findByPointer (v3)` , ( ) => {
41
41
findByPointerV3 ( '/foo/bar/0/baz' , doc ) ;
42
42
} )
43
- . add ( `findByPointer (v4)` , function ( ) {
43
+ . add ( `findByPointer (v4)` , ( ) => {
44
44
findByPointerV4 ( '/foo/bar/0/baz' , doc ) ;
45
45
} )
46
- . add ( `findByPointer (v5)` , function ( ) {
46
+ . add ( `findByPointer (v5)` , ( ) => {
47
47
findByPointerV5 ( '/foo/bar/0/baz' , doc ) ;
48
48
} )
49
- . add ( `findByPointer (v6)` , function ( ) {
49
+ . add ( `findByPointer (v6)` , ( ) => {
50
50
findByPointerV6 ( '/foo/bar/0/baz' , doc ) ;
51
51
} )
52
- . on ( 'cycle' , function ( event ) {
52
+ . on ( 'cycle' , ( event ) => {
53
53
console . log ( String ( event . target ) ) ;
54
54
} )
55
55
. on ( 'complete' , function ( ) {
0 commit comments