JSTQL-JS-Transform/output_testing/580call-args-destructuring-assignment.js

5 lines
101 B
JavaScript
Raw Normal View History

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