mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
17 lines
191 B
TypeScript
17 lines
191 B
TypeScript
const dbPool = 1;
|
|
function d() {
|
|
1;
|
|
}
|
|
async function fn() {
|
|
d();
|
|
}
|
|
async function fn1() {
|
|
d();
|
|
}
|
|
function router() {
|
|
fn();
|
|
fn1();
|
|
}
|
|
router();
|
|
export { dbPool as dbPool };
|