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