JSTQL-JS-Transform/output_testing/569prop-capturing-function-1.js

10 lines
124 B
JavaScript
Raw Normal View History

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