JSTQL-JS-Transform/output_testing/461capturing-function-1.js

9 lines
114 B
JavaScript
Raw Normal View History

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