--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: js/quotes/objects.js --- # Input ```js const obj = { 'a': true, b: true, "𐊧": true, } ``` # Prettier differences ```diff --- Prettier +++ Rome @@ -1,5 +1,5 @@ const obj = { a: true, b: true, - "𐊧": true, + 𐊧: true, }; ``` # Output ```js const obj = { a: true, b: true, 𐊧: true, }; ```