JSTQL-JS-Transform/output_testing/525reactive-scope-grouping.js

8 lines
101 B
JavaScript
Raw Normal View History

function foo() {
let x = {};
let y = [];
let z = {};
z |> y.push(%);
x.y = y;
return x;
}