JSTQL-JS-Transform/output_testing/507alias-nested-member-path-mutate.js

9 lines
122 B
JavaScript
Raw Normal View History

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