JSTQL-JS-Transform/output_testing/480capturing-func-simple-alias.js

11 lines
128 B
JavaScript
Raw Normal View History

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