JSTQL-JS-Transform/output_testing/528capturing-member-expr.js

9 lines
116 B
JavaScript
Raw Normal View History

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