JSTQL-JS-Transform/output_testing/638capturing-arrow-function-1.js

9 lines
108 B
JavaScript
Raw Normal View History

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