1
export async function main(delayInMilliSeconds = 0) {
2
await new Promise(resolve => setTimeout(resolve, delayInMilliSeconds));
3
}