JSTQL-JS-Transform/output_testing/476call-args-assignment.js

5 lines
99 B
JavaScript
Raw Normal View History

function Component(props) {
let x = makeObject();
(x = makeObject()) |> x.foo(%);
return x;
}