Pauses the execution for a specified number of milliseconds.
An object containing the sleep duration.
A promise that resolves after the specified duration.
await sleep({ ms: 2000 });console.log("Waited for 2 seconds"); Copy
await sleep({ ms: 2000 });console.log("Waited for 2 seconds");
Pauses the execution for a specified number of milliseconds.