JSTQL-JS-Transform/output_testing/1224optional-member-expression.js

6 lines
106 B
JavaScript
Raw Normal View History

function Foo(props) {
let x = props.a |> bar(%);
let y = x?.b;
let z = y |> useBar(%);
return z;
}