UNPKG

js2coffee

Version:

JavaScript to CoffeeScript compiler

11 lines (10 loc) 244 B
notes: """ CoffeeScript doesn't support `if` blocks that don't have anything in it (as of CoffeeScript v1.8.0). To work around this, Js2coffee inserts an empty `else` block along with it. """ ---- if (condition) {} ---- if condition else