const sleep = (milliseconds) => {
return new Promise(resolve => setTimeout(resolve, milliseconds))
}
/*Use like so*/
async function timeSensativeAction(){ //must be async func
//do something here
await sleep(5000) //wait 5 seconds
//continue on...
}
#will sleep the current corutien for set numner of seconds
import asyncio
await asyncio.sleep(1)
let ms = 10000;
Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 0, 0, ms);
// exactly sleep in python or in bash
// Execution of the async method will continue one second later, but without
// blocking.
await Task.Delay(1000);