File: multiple.js

package info (click to toggle)
node-proxy-agents 0~2024040606-6
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,900 kB
  • sloc: javascript: 5,805; makefile: 36
file content (12 lines) | stat: -rw-r--r-- 120 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
// foo
function foo () {
  return baz();
}

function bar () {
  return foo(baz);
}

function baz () {
  return bar();
}