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

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