1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-21 15:58:47 +00:00
Files
UXP/dom/base/test/jsmodules/module_cyclic2.js
T

8 lines
146 B
JavaScript

import { func3 } from "./module_cyclic3.js";
export function func2(x, y) {
if (x <= 0)
return y;
return func3(x - 1, y + "2");
}