@@ -23,33 +23,33 @@ const doc = {
2323} ;
2424
2525suite
26- . add ( `find` , function ( ) {
26+ . add ( `find` , ( ) => {
2727 const pointer = parseJsonPointer ( '/foo/bar/0/baz' ) ;
2828 find ( doc , pointer ) ;
2929 } )
30- . add ( `find ES5` , function ( ) {
30+ . add ( `find ES5` , ( ) => {
3131 const pointer = parseJsonPointerEs5 ( '/foo/bar/0/baz' ) ;
3232 findEs5 ( doc , pointer ) ;
3333 } )
34- . add ( `findByPointer (v1)` , function ( ) {
34+ . add ( `findByPointer (v1)` , ( ) => {
3535 findByPointerV1 ( '/foo/bar/0/baz' , doc ) ;
3636 } )
37- . add ( `findByPointer (v2)` , function ( ) {
37+ . add ( `findByPointer (v2)` , ( ) => {
3838 findByPointerV2 ( '/foo/bar/0/baz' , doc ) ;
3939 } )
40- . add ( `findByPointer (v3)` , function ( ) {
40+ . add ( `findByPointer (v3)` , ( ) => {
4141 findByPointerV3 ( '/foo/bar/0/baz' , doc ) ;
4242 } )
43- . add ( `findByPointer (v4)` , function ( ) {
43+ . add ( `findByPointer (v4)` , ( ) => {
4444 findByPointerV4 ( '/foo/bar/0/baz' , doc ) ;
4545 } )
46- . add ( `findByPointer (v5)` , function ( ) {
46+ . add ( `findByPointer (v5)` , ( ) => {
4747 findByPointerV5 ( '/foo/bar/0/baz' , doc ) ;
4848 } )
49- . add ( `findByPointer (v6)` , function ( ) {
49+ . add ( `findByPointer (v6)` , ( ) => {
5050 findByPointerV6 ( '/foo/bar/0/baz' , doc ) ;
5151 } )
52- . on ( 'cycle' , function ( event ) {
52+ . on ( 'cycle' , ( event ) => {
5353 console . log ( String ( event . target ) ) ;
5454 } )
5555 . on ( 'complete' , function ( ) {
0 commit comments