JSTQL-JS-Transform/output_testing/534array-join.js

6 lines
174 B
JavaScript
Raw Normal View History

function Component(props) {
const x = [{}, [], props.value];
const y = (() => "this closure gets stringified, not called") |> x.join(%);
y |> foo(%);
return [x, y];
}