13 lines
No EOL
223 B
JavaScript
13 lines
No EOL
223 B
JavaScript
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
|
|
}; |