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

11 lines
133 B
JavaScript
Raw Normal View History

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