JSTQL-JS-Transform/output_testing/552function-declaration-simple.js

10 lines
108 B
JavaScript
Raw Normal View History

function component(a) {
let t = {
a
};
function x(p) {
p.foo();
}
t |> x(%);
return t;
}