mirror of
https://github.com/oven-sh/bun
synced 2026-02-13 20:39:05 +00:00
21 lines
211 B
JavaScript
21 lines
211 B
JavaScript
export default {
|
|
fetch(request) {
|
|
return new Response(a());
|
|
},
|
|
};
|
|
|
|
function a() {
|
|
return b();
|
|
}
|
|
|
|
function b() {
|
|
return c();
|
|
}
|
|
|
|
function c() {
|
|
function d() {
|
|
return "hello";
|
|
}
|
|
return d();
|
|
}
|