I have several asynchronous functions running, and I'm wondering if it is possible to close a function that is running in the background. With its name for example ?
async function test(){
await ...
await ...
await ...
}
/* CODE TO CLOSE the test function, something like : aclose("test"); ??? */