We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Usage example:
val local = 2 val ast = javascript { val b = inject(local) val f = (a: Int) => a + b f(1) } val s = ast.asString val r = ast.eval() // 3 val c = ast.compress
s will contain
s
var b = 2; var f = function(a) { return a + b; }