@@ -12,7 +12,7 @@ function testValue (type, value, buffer) {
1212 . on ( 'cycle' , function ( event ) {
1313 console . log ( String ( event . target ) )
1414 } )
15- . run ( { ' async' : false } )
15+ . run ( { async : false } )
1616 } )
1717 it ( 'reads' , function ( ) {
1818 const suite = new Benchmark . Suite ( )
@@ -22,7 +22,7 @@ function testValue (type, value, buffer) {
2222 . on ( 'cycle' , function ( event ) {
2323 console . log ( String ( event . target ) )
2424 } )
25- . run ( { ' async' : false } )
25+ . run ( { async : false } )
2626 } )
2727
2828 it ( 'writes (compiled)' , function ( ) {
@@ -33,7 +33,7 @@ function testValue (type, value, buffer) {
3333 . on ( 'cycle' , function ( event ) {
3434 console . log ( String ( event . target ) )
3535 } )
36- . run ( { ' async' : false } )
36+ . run ( { async : false } )
3737 } )
3838 it ( 'reads (compiled)' , function ( ) {
3939 const suite = new Benchmark . Suite ( )
@@ -43,7 +43,7 @@ function testValue (type, value, buffer) {
4343 . on ( 'cycle' , function ( event ) {
4444 console . log ( String ( event . target ) )
4545 } )
46- . run ( { ' async' : false } )
46+ . run ( { async : false } )
4747 } )
4848}
4949
0 commit comments