summaryrefslogtreecommitdiffstats
path: root/dom/base/test/jsmodules/module_cyclic1.js
blob: efcfb9a4ea2f2f228018950b60656df69e37ecbf (plain)
1
2
3
4
5
6
7
import { func2 } from "./module_cyclic2.js";

export function func1(x, y) {
    if (x <= 0)
        return y;
    return func2(x - 1, y + "1");
}