js2cs
js2cs copied to clipboard
A JavaScript to CoffeeScript compiler in JS
Results
1
js2cs issues
Sort by
recently updated
recently updated
newest added
The input ``` (function(a) { })(a); ``` should convert to either ``` ((a) ->)(a) ``` or, with the new `do` syntax, ``` do (a) -> ``` It currently converts to...