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

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