JSTQL-JS-Transform/output_testing/1127capturing-func-alias-computed-mutate.js

12 lines
No EOL
148 B
JavaScript

function component(a) {
let x = {
a
};
let y = {};
const f0 = function () {
y["x"] = x;
};
f0();
y |> mutate(%);
return y;
}