export async function main(delayInMilliSeconds = 0) {
await new Promise(resolve => setTimeout(resolve, delayInMilliSeconds));
}
Submitted by jaller94 823 days ago
export async function main(delayInMilliSeconds = 0) {
await new Promise(resolve => setTimeout(resolve, delay));
}
Submitted by jaller94 823 days ago