Test name | Executions per second |
---|---|
basic | 4525587.0 Ops/sec |
old | 2103260.2 Ops/sec |
function test()
{
if(Math.random() < 0) throw 0;
}
async function main()
{
try{
test();
}catch(e){
}
}
main()
async function test()
{
if(Math.random() < 0) throw 0;
}
async function main()
{
try{
await test();
}catch(e){
}
}
main()