tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

module_cyclic1.mjs (145B)


      1 import { func2 } from "./module_cyclic2.mjs";
      2 
      3 export function func1(x, y) {
      4  if (x <= 0) {
      5    return y;
      6  }
      7  return func2(x - 1, y + "1");
      8 }