--- source: crates/biome_formatter_test/src/snapshot_builder.rs assertion_line: 212 info: js/range/boundary-2.js --- # Input ```js function a( ){ a ( ); b ( ); c ( ); d( ); } ``` # Prettier differences ```diff --- Prettier +++ Biome @@ -1,7 +1,9 @@ function a( ){ - a(); - b(); - c(); - d(); +a ( +); +b(); +c(); d( +); + } ``` # Output ```js function a( ){ a ( ); b(); c(); d( ); } ```