JSTQL-JS-Transform/output_testing/623primitive-alias-mutate.js

11 lines
No EOL
141 B
JavaScript

function component(a) {
let x = "foo";
if (a) {
x = "bar";
} else {
x = "baz";
}
let y = x;
y |> mutate(%);
return y;
}