JSTQL-JS-Transform/output_testing/524capturing-nested-member-expr.js

11 lines
135 B
JavaScript
Raw Normal View History

function component(a) {
let z = {
a: {
a
}
};
let x = function () {
z.a.a |> console.log(%);
};
return x;
}