JSTQL-JS-Transform/output_testing/479capturing-function-shadow-captured.js

10 lines
120 B
JavaScript
Raw Normal View History

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