tor-browser

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

module_cyclic3.mjs (145B)


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