Files

15 lines
221 B
JavaScript
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
function Component() {
let x = [];
let items = [0, 1, 2];
for (const ii of items) {
x.push(ii * 2);
}
return x;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [],
isComponent: false,
};