UNPKG

js2coffee

Version:

JavaScript to CoffeeScript compiler

15 lines (13 loc) 275 B
options: { compat: true } notes: """ Named function expressions are not supported in CoffeeScript. If compatibility mode is on (`--compat`), they will be escaped into backticks. """ ---- var x = function fn() { return fn; } ---- x = (`function fn() { return fn; }`)