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

11 lines
No EOL
133 B
JavaScript

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