I have a problem with calling a non-async function from the function method. Is there any way to do this?
Example:
async function myMethod()
{
console.log('In async method');
nonasyncmethod();
}
function nonasyncmethod()
{
console.log('In non-async method');
}