kakoune/test/indent/javascript/deindent-complex-brace-structure/out
2020-07-29 15:05:49 -06:00

13 lines
210 B
Plaintext

for (let i = 1; i < 5; ++i) {
if (true) {
console.log(
{
foo: { bar: 1 },
},
{
baz: { bam: 2 },
},
);
}
}