Files
bun.sh/packages/bun-debug-adapter-protocol/src/debugger/fixtures/without-sourcemap.js
2023-08-25 12:03:00 -07:00

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();
}