15 lines
170 B
JavaScript
15 lines
170 B
JavaScript
function foo() {
|
|
let x = 1;
|
|
while (x < 10) {
|
|
x = x + 1;
|
|
}
|
|
|
|
return x;
|
|
}
|
|
|
|
export const FIXTURE_ENTRYPOINT = {
|
|
fn: foo,
|
|
params: [],
|
|
isComponent: false,
|
|
};
|