decaf icon indicating copy to clipboard operation
decaf copied to clipboard

Coffeescript to ES.next transpiler. Now maintained over at

Results 7 decaf issues
Sort by recently updated
recently updated
newest added

Is this the same project https://github.com/decaffeinate/decaffeinate or different?

[This link](https://github.com/rainforestapp/decaf/blame/3e09de4903f89520a88844170540bb2335bc1812/readme.md#L5) (http://www.goodafternoon.co/decaf/) is a 404

Currently a chained comparison [passes trough](http://rainforestapp.github.io/decaf/#?evaluate=true&code=1%20%3C%200%20%3C%203), but it should be [split into its parts](http://coffeescript.org/#try:1%20%3C%200%20%3C%203).

Hi, A common scenario is to keep the `src` folder coffee only. It would be nice to be able to specify an output folder, such as: `decaf src/ -o lib/`...

``` coffee (a) => a ``` should become ``` js a => a; ``` but actually becomes ``` js a => { return a; }; ```

enhancement

Missing feature! Template strings like this: ``` coffeescript bom = 'yoyoyo #{dwq}' ``` should transpile to ``` javascript bom = `yoyoyo ${dwq}`; ```

enhancement

The coffeescript compiler unfortunately completely ditches single line comments and currently there's no easy way to insert multiline comments into the ast (ast-types doesn't make that easy).

enhancement