JSTQL-JS-Transform/output_testing/630capturing-variable-in-nested-block.js

11 lines
128 B
JavaScript
Raw Normal View History

function component(a) {
let z = {
a
};
let x = function () {
{
z |> console.log(%);
}
};
return x;
}