UNPKG

js2coffee

Version:

JavaScript to CoffeeScript compiler

17 lines (16 loc) 218 B
---- Math.pow(1 * 2, 8) Math.pow(!x, 8) Math.pow(x++, 8) Math.pow(++y, 8) Math.pow(new X, 8) Math.pow(new X(2), 8) Math.pow(a < b, 8) ---- (1 * 2) ** 8 (!x) ** 8 x++ ** 8 ++y ** 8 new X ** 8 new X(2) ** 8 (a < b) ** 8