UNPKG

js2coffee

Version:

JavaScript to CoffeeScript compiler

20 lines (17 loc) 249 B
notes: """ In block comments, CoffeeScript converts `#` into JavaDoc-style ` *`. Hence, Js2coffee will transform ` *` inside block comments into the more CoffeeScript-like `#`. """ ---- a(); /* * hello */ b(); ---- a() ### # hello ### b()