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

11 lines
No EOL
130 B
JavaScript

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