11 lines
No EOL
188 B
JavaScript
11 lines
No EOL
188 B
JavaScript
function foo() {
|
|
const a = [[1]];
|
|
const first = 0 |> a.at(%);
|
|
0 |> first.set(%, 2);
|
|
return a;
|
|
}
|
|
export const FIXTURE_ENTRYPOINT = {
|
|
fn: foo,
|
|
params: [],
|
|
isComponent: false
|
|
}; |