This coffeecode
obj
.func1()
.func2()
will result in
obj.func1().func2();
this work find.
But when I type this
obj
.func1 "aaa"
.func2 "bbb"
it will result in
obj.func1("aaa".func2("bbb"));
I must type like this
obj
.func1('aaa')
.func2('bbb')
that result in javsscript
obj.func1('aaa').func2('bbb');
Is there a way to omit parentthese when chain function in coffeescript?