JSTQL-JS-Transform/output_testing/1243for-of-simple.js

13 lines
223 B
JavaScript
Raw Normal View History

function Component() {
let x = [];
let items = [0, 1, 2];
for (const ii of items) {
ii * 2 |> x.push(%);
}
return x;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [],
isComponent: false
};