JSTQL-JS-Transform/output_testing/556capturing-function-within-block.js

12 lines
133 B
JavaScript
Raw Normal View History

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