I want to convert
console.log({
a: 'a'
}, {
b: 'b'
});
into CoffeeScript. The only way I found is
console.log
a: 'a',
b: 'b'
It seems bizarre that a: 'a' and b: 'b' are not indented the same when they are essentially symetric in this situation.