kakoune/test/indent/javascript/deindent-complex-brace-structure/out

13 lines
210 B
Plaintext
Raw Normal View History

2020-07-29 23:05:49 +02:00
for (let i = 1; i < 5; ++i) {
if (true) {
console.log(
{
foo: { bar: 1 },
},
{
baz: { bam: 2 },
},
);
}
}