mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +02:00
7 lines
146 B
JavaScript
7 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");
|
|
}
|