UNPKG

js2coffee

Version:

JavaScript to CoffeeScript compiler

10 lines (9 loc) 204 B
notes: """ CoffeeScript doesn't allow loop constructs (while/loop/for) without any body. To get around this, we use `continue` in place of an empty body. """ ---- while (a) {} ---- while a continue