tor-browser

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

module_cyclic2.mjs (145B)


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