prettier/tests/object_property_comment/after-key.js

8 lines
85 B
JavaScript
Raw Normal View History

2017-04-05 23:10:10 +03:00
let a = {
a /* comment */: () => 1
};
let a = {
"a" /* comment */: () => 1
};