File: multiple.expected.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 (9 lines) | stat: -rw-r--r-- 150 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
async function foo() {
    return await baz();
}
async function bar() {
    return await foo(baz);
}
async function baz() {
    return await bar();
}