js2coffee / js2coffee

Compile JavaScript to CoffeeScript

Home Page:http://js2.coffee

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Brackets issue.

utizr opened this issue · comments

When compiling the following js
'text' + (1 + 2)
we get the following coffeescript
'text' + 1 + 2
which is not the same. First will return text3 while the second one text12