UNPKG

js2coffee

Version:

JavaScript to CoffeeScript compiler

19 lines (18 loc) 212 B
---- function fn () { switch (obj) { case 'one': return a(); default: return b(); } return } ---- fn = -> switch obj when 'one' return a() else return b() return